Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2025-15284 (GCVE-0-2025-15284)
Vulnerability from cvelistv5 – Published: 2025-12-29 22:56 – Updated: 2026-02-10 20:06- CWE-20 - Improper Input Validation
| URL | Tags |
|---|---|
| https://github.com/ljharb/qs/security/advisories/… | vendor-advisory |
| https://github.com/ljharb/qs/commit/3086902ecf7f0… | patch |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2025-15284",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "yes"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2025-12-30T14:55:26.031863Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2025-12-30T15:57:41.402Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"collectionURL": "https://npmjs.com/qs",
"defaultStatus": "affected",
"modules": [
"parse"
],
"packageName": "qs",
"repo": "https://github.com/ljharb/qs",
"versions": [
{
"status": "affected",
"version": "\u003c 6.14.1",
"versionType": "semver"
}
]
}
],
"descriptions": [
{
"lang": "en",
"supportingMedia": [
{
"base64": false,
"type": "text/html",
"value": "Improper Input Validation vulnerability in qs (parse modules) allows HTTP DoS.\u003cp\u003eThis issue affects qs: \u0026lt; 6.14.1.\u003c/p\u003e\u003ch3\u003e\u003cbr\u003eSummary\u003c/h3\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003eThe \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;option in qs did not enforce limits for bracket notation (\u003ccode\u003ea[]=1\u0026amp;a[]=2\u003c/code\u003e), only for indexed notation (\u003ccode\u003ea[0]=1\u003c/code\u003e). This is a consistency bug; \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;should apply uniformly across all array notations.\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eNote:\u003c/strong\u003e\u0026nbsp;The default \u003ccode\u003eparameterLimit\u003c/code\u003e\u0026nbsp;of 1000 effectively mitigates the DoS scenario originally described. With default options, bracket notation cannot produce arrays larger than \u003ccode\u003eparameterLimit\u003c/code\u003e\u0026nbsp;regardless of \u003ccode\u003earrayLimit\u003c/code\u003e, because each \u003ccode\u003ea[]=value\u003c/code\u003econsumes one parameter slot. The severity has been reduced accordingly.\u003c/p\u003e\u003ch3\u003eDetails\u003c/h3\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003eThe \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;option only checked limits for indexed notation (\u003ccode\u003ea[0]=1\u0026amp;a[1]=2\u003c/code\u003e) but did not enforce it for bracket notation (\u003ccode\u003ea[]=1\u0026amp;a[]=2\u003c/code\u003e).\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eVulnerable code\u003c/strong\u003e\u0026nbsp;(\u003ccode\u003elib/parse.js:159-162\u003c/code\u003e):\u003c/p\u003e\u003cdiv\u003e\u003cpre\u003eif (root === \u0027[]\u0027 \u0026amp;\u0026amp; options.parseArrays) {\n obj = utils.combine([], leaf); // No arrayLimit check\n}\u003c/pre\u003e\u003cdiv\u003e\u003c/div\u003e\u003c/div\u003e\u003cp\u003e\u003cstrong\u003eWorking code\u003c/strong\u003e\u0026nbsp;(\u003ccode\u003elib/parse.js:175\u003c/code\u003e):\u003c/p\u003e\u003cdiv\u003e\u003cpre\u003eelse if (index \u0026lt;= options.arrayLimit) { // Limit checked here\n obj = [];\n obj[index] = leaf;\n}\u003c/pre\u003e\u003cdiv\u003e\u003c/div\u003e\u003c/div\u003e\u003cp\u003eThe bracket notation handler at line 159 uses \u003ccode\u003eutils.combine([], leaf)\u003c/code\u003e\u0026nbsp;without validating against \u003ccode\u003eoptions.arrayLimit\u003c/code\u003e, while indexed notation at line 175 checks \u003ccode\u003eindex \u0026lt;= options.arrayLimit\u003c/code\u003e\u0026nbsp;before creating arrays.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003ch3\u003ePoC\u003c/h3\u003e\u003cp\u003e\u003cstrong\u003e\u003c/strong\u003e\u003c/p\u003e\u003cdiv\u003e\u003cpre\u003econst qs = require(\u0027qs\u0027);\nconst result = qs.parse(\u0027a[]=1\u0026amp;a[]=2\u0026amp;a[]=3\u0026amp;a[]=4\u0026amp;a[]=5\u0026amp;a[]=6\u0027, { arrayLimit: 5 });\nconsole.log(result.a.length); // Output: 6 (should be max 5)\u003c/pre\u003e\u003cdiv\u003e\u003c/div\u003e\u003c/div\u003e\u003cp\u003e\u003cstrong\u003eNote on parameterLimit interaction:\u003c/strong\u003e\u0026nbsp;The original advisory\u0027s \"DoS demonstration\" claimed a length of 10,000, but \u003ccode\u003eparameterLimit\u003c/code\u003e\u0026nbsp;(default: 1000) caps parsing to 1,000 parameters. With default options, the actual output is 1,000, not 10,000.\u003c/p\u003e\u003ch3\u003eImpact\u003c/h3\u003e\u003cp\u003e\u003c/p\u003e\u003cspan style=\"background-color: rgb(255, 255, 255);\"\u003eConsistency bug in \u003c/span\u003e\u003ccode\u003earrayLimit\u003c/code\u003e\u003cspan style=\"background-color: rgb(255, 255, 255);\"\u003e\u0026nbsp;enforcement. With default \u003c/span\u003e\u003ccode\u003eparameterLimit\u003c/code\u003e\u003cspan style=\"background-color: rgb(255, 255, 255);\"\u003e, the practical DoS risk is negligible since \u003c/span\u003e\u003ccode\u003eparameterLimit\u003c/code\u003e\u003cspan style=\"background-color: rgb(255, 255, 255);\"\u003e\u0026nbsp;already caps the total number of parsed parameters (and thus array elements from bracket notation). The risk increases only when \u003c/span\u003e\u003ccode\u003eparameterLimit\u003c/code\u003e\u003cspan style=\"background-color: rgb(255, 255, 255);\"\u003e\u0026nbsp;is explicitly set to a very high value.\u003c/span\u003e"
}
],
"value": "Improper Input Validation vulnerability in qs (parse modules) allows HTTP DoS.This issue affects qs: \u003c 6.14.1.\n\n\nSummary\n\nThe arrayLimit\u00a0option in qs did not enforce limits for bracket notation (a[]=1\u0026a[]=2), only for indexed notation (a[0]=1). This is a consistency bug; arrayLimit\u00a0should apply uniformly across all array notations.\n\nNote:\u00a0The default parameterLimit\u00a0of 1000 effectively mitigates the DoS scenario originally described. With default options, bracket notation cannot produce arrays larger than parameterLimit\u00a0regardless of arrayLimit, because each a[]=valueconsumes one parameter slot. The severity has been reduced accordingly.\n\nDetails\n\nThe arrayLimit\u00a0option only checked limits for indexed notation (a[0]=1\u0026a[1]=2) but did not enforce it for bracket notation (a[]=1\u0026a[]=2).\n\nVulnerable code\u00a0(lib/parse.js:159-162):\n\nif (root === \u0027[]\u0027 \u0026\u0026 options.parseArrays) {\n obj = utils.combine([], leaf); // No arrayLimit check\n}\n\n\n\n\n\nWorking code\u00a0(lib/parse.js:175):\n\nelse if (index \u003c= options.arrayLimit) { // Limit checked here\n obj = [];\n obj[index] = leaf;\n}\n\n\n\n\n\nThe bracket notation handler at line 159 uses utils.combine([], leaf)\u00a0without validating against options.arrayLimit, while indexed notation at line 175 checks index \u003c= options.arrayLimit\u00a0before creating arrays.\n\n\n\nPoC\n\nconst qs = require(\u0027qs\u0027);\nconst result = qs.parse(\u0027a[]=1\u0026a[]=2\u0026a[]=3\u0026a[]=4\u0026a[]=5\u0026a[]=6\u0027, { arrayLimit: 5 });\nconsole.log(result.a.length); // Output: 6 (should be max 5)\n\n\n\n\n\nNote on parameterLimit interaction:\u00a0The original advisory\u0027s \"DoS demonstration\" claimed a length of 10,000, but parameterLimit\u00a0(default: 1000) caps parsing to 1,000 parameters. With default options, the actual output is 1,000, not 10,000.\n\nImpact\n\nConsistency bug in arrayLimit\u00a0enforcement. With default parameterLimit, the practical DoS risk is negligible since parameterLimit\u00a0already caps the total number of parsed parameters (and thus array elements from bracket notation). The risk increases only when parameterLimit\u00a0is explicitly set to a very high value."
}
],
"impacts": [
{
"capecId": "CAPEC-469",
"descriptions": [
{
"lang": "en",
"value": "CAPEC-469 HTTP DoS"
}
]
}
],
"metrics": [
{
"cvssV4_0": {
"Automatable": "NOT_DEFINED",
"Recovery": "NOT_DEFINED",
"Safety": "NOT_DEFINED",
"attackComplexity": "LOW",
"attackRequirements": "PRESENT",
"attackVector": "NETWORK",
"baseScore": 6.3,
"baseSeverity": "MEDIUM",
"exploitMaturity": "NOT_DEFINED",
"privilegesRequired": "NONE",
"providerUrgency": "NOT_DEFINED",
"subAvailabilityImpact": "LOW",
"subConfidentialityImpact": "NONE",
"subIntegrityImpact": "NONE",
"userInteraction": "NONE",
"valueDensity": "NOT_DEFINED",
"vectorString": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:L",
"version": "4.0",
"vulnAvailabilityImpact": "LOW",
"vulnConfidentialityImpact": "NONE",
"vulnIntegrityImpact": "NONE",
"vulnerabilityResponseEffort": "NOT_DEFINED"
},
"format": "CVSS",
"scenarios": [
{
"lang": "en",
"value": "GENERAL"
}
]
},
{
"cvssV3_1": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 3.7,
"baseSeverity": "LOW",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"format": "CVSS",
"scenarios": [
{
"lang": "en",
"value": "GENERAL"
}
]
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-20",
"description": "CWE-20 Improper Input Validation",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-02-10T20:06:42.111Z",
"orgId": "7ffcee3d-2c14-4c3e-b844-86c6a321a158",
"shortName": "harborist"
},
"references": [
{
"tags": [
"vendor-advisory"
],
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
},
{
"tags": [
"patch"
],
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
}
],
"source": {
"discovery": "UNKNOWN"
},
"title": "arrayLimit bypass in bracket notation allows DoS via memory exhaustion",
"x_generator": {
"engine": "Vulnogram 0.5.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "7ffcee3d-2c14-4c3e-b844-86c6a321a158",
"assignerShortName": "harborist",
"cveId": "CVE-2025-15284",
"datePublished": "2025-12-29T22:56:45.240Z",
"dateReserved": "2025-12-29T21:36:51.399Z",
"dateUpdated": "2026-02-10T20:06:42.111Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2025-15284",
"date": "2026-06-14",
"epss": "0.00035",
"percentile": "0.10897"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2025-15284\",\"sourceIdentifier\":\"7ffcee3d-2c14-4c3e-b844-86c6a321a158\",\"published\":\"2025-12-29T23:15:42.703\",\"lastModified\":\"2026-02-26T19:57:11.663\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Improper Input Validation vulnerability in qs (parse modules) allows HTTP DoS.This issue affects qs: \u003c 6.14.1.\\n\\n\\nSummary\\n\\nThe arrayLimit\u00a0option in qs did not enforce limits for bracket notation (a[]=1\u0026a[]=2), only for indexed notation (a[0]=1). This is a consistency bug; arrayLimit\u00a0should apply uniformly across all array notations.\\n\\nNote:\u00a0The default parameterLimit\u00a0of 1000 effectively mitigates the DoS scenario originally described. With default options, bracket notation cannot produce arrays larger than parameterLimit\u00a0regardless of arrayLimit, because each a[]=valueconsumes one parameter slot. The severity has been reduced accordingly.\\n\\nDetails\\n\\nThe arrayLimit\u00a0option only checked limits for indexed notation (a[0]=1\u0026a[1]=2) but did not enforce it for bracket notation (a[]=1\u0026a[]=2).\\n\\nVulnerable code\u00a0(lib/parse.js:159-162):\\n\\nif (root === \u0027[]\u0027 \u0026\u0026 options.parseArrays) {\\n obj = utils.combine([], leaf); // No arrayLimit check\\n}\\n\\n\\n\\n\\n\\nWorking code\u00a0(lib/parse.js:175):\\n\\nelse if (index \u003c= options.arrayLimit) { // Limit checked here\\n obj = [];\\n obj[index] = leaf;\\n}\\n\\n\\n\\n\\n\\nThe bracket notation handler at line 159 uses utils.combine([], leaf)\u00a0without validating against options.arrayLimit, while indexed notation at line 175 checks index \u003c= options.arrayLimit\u00a0before creating arrays.\\n\\n\\n\\nPoC\\n\\nconst qs = require(\u0027qs\u0027);\\nconst result = qs.parse(\u0027a[]=1\u0026a[]=2\u0026a[]=3\u0026a[]=4\u0026a[]=5\u0026a[]=6\u0027, { arrayLimit: 5 });\\nconsole.log(result.a.length); // Output: 6 (should be max 5)\\n\\n\\n\\n\\n\\nNote on parameterLimit interaction:\u00a0The original advisory\u0027s \\\"DoS demonstration\\\" claimed a length of 10,000, but parameterLimit\u00a0(default: 1000) caps parsing to 1,000 parameters. With default options, the actual output is 1,000, not 10,000.\\n\\nImpact\\n\\nConsistency bug in arrayLimit\u00a0enforcement. With default parameterLimit, the practical DoS risk is negligible since parameterLimit\u00a0already caps the total number of parsed parameters (and thus array elements from bracket notation). The risk increases only when parameterLimit\u00a0is explicitly set to a very high value.\"}],\"metrics\":{\"cvssMetricV40\":[{\"source\":\"7ffcee3d-2c14-4c3e-b844-86c6a321a158\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"4.0\",\"vectorString\":\"CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:L/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X\",\"baseScore\":6.3,\"baseSeverity\":\"MEDIUM\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"attackRequirements\":\"PRESENT\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"vulnConfidentialityImpact\":\"NONE\",\"vulnIntegrityImpact\":\"NONE\",\"vulnAvailabilityImpact\":\"LOW\",\"subConfidentialityImpact\":\"NONE\",\"subIntegrityImpact\":\"NONE\",\"subAvailabilityImpact\":\"LOW\",\"exploitMaturity\":\"NOT_DEFINED\",\"confidentialityRequirement\":\"NOT_DEFINED\",\"integrityRequirement\":\"NOT_DEFINED\",\"availabilityRequirement\":\"NOT_DEFINED\",\"modifiedAttackVector\":\"NOT_DEFINED\",\"modifiedAttackComplexity\":\"NOT_DEFINED\",\"modifiedAttackRequirements\":\"NOT_DEFINED\",\"modifiedPrivilegesRequired\":\"NOT_DEFINED\",\"modifiedUserInteraction\":\"NOT_DEFINED\",\"modifiedVulnConfidentialityImpact\":\"NOT_DEFINED\",\"modifiedVulnIntegrityImpact\":\"NOT_DEFINED\",\"modifiedVulnAvailabilityImpact\":\"NOT_DEFINED\",\"modifiedSubConfidentialityImpact\":\"NOT_DEFINED\",\"modifiedSubIntegrityImpact\":\"NOT_DEFINED\",\"modifiedSubAvailabilityImpact\":\"NOT_DEFINED\",\"Safety\":\"NOT_DEFINED\",\"Automatable\":\"NOT_DEFINED\",\"Recovery\":\"NOT_DEFINED\",\"valueDensity\":\"NOT_DEFINED\",\"vulnerabilityResponseEffort\":\"NOT_DEFINED\",\"providerUrgency\":\"NOT_DEFINED\"}}],\"cvssMetricV31\":[{\"source\":\"7ffcee3d-2c14-4c3e-b844-86c6a321a158\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L\",\"baseScore\":3.7,\"baseSeverity\":\"LOW\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"HIGH\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"LOW\"},\"exploitabilityScore\":2.2,\"impactScore\":1.4}]},\"weaknesses\":[{\"source\":\"7ffcee3d-2c14-4c3e-b844-86c6a321a158\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-20\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:qs_project:qs:*:*:*:*:*:node.js:*:*\",\"versionEndExcluding\":\"6.14.1\",\"matchCriteriaId\":\"380D5D35-23CF-4366-B27D-9370E81D3D5E\"}]}]}],\"references\":[{\"url\":\"https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9\",\"source\":\"7ffcee3d-2c14-4c3e-b844-86c6a321a158\",\"tags\":[\"Patch\"]},{\"url\":\"https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p\",\"source\":\"7ffcee3d-2c14-4c3e-b844-86c6a321a158\",\"tags\":[\"Exploit\",\"Mitigation\",\"Vendor Advisory\"]}]}}",
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2025-15284\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"yes\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2025-12-30T14:55:26.031863Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2025-12-30T15:55:05.860Z\"}}], \"cna\": {\"title\": \"arrayLimit bypass in bracket notation allows DoS via memory exhaustion\", \"source\": {\"discovery\": \"UNKNOWN\"}, \"impacts\": [{\"capecId\": \"CAPEC-469\", \"descriptions\": [{\"lang\": \"en\", \"value\": \"CAPEC-469 HTTP DoS\"}]}], \"metrics\": [{\"format\": \"CVSS\", \"cvssV4_0\": {\"Safety\": \"NOT_DEFINED\", \"version\": \"4.0\", \"Recovery\": \"NOT_DEFINED\", \"baseScore\": 6.3, \"Automatable\": \"NOT_DEFINED\", \"attackVector\": \"NETWORK\", \"baseSeverity\": \"MEDIUM\", \"valueDensity\": \"NOT_DEFINED\", \"vectorString\": \"CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:L\", \"exploitMaturity\": \"NOT_DEFINED\", \"providerUrgency\": \"NOT_DEFINED\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"attackRequirements\": \"PRESENT\", \"privilegesRequired\": \"NONE\", \"subIntegrityImpact\": \"NONE\", \"vulnIntegrityImpact\": \"NONE\", \"subAvailabilityImpact\": \"LOW\", \"vulnAvailabilityImpact\": \"LOW\", \"subConfidentialityImpact\": \"NONE\", \"vulnConfidentialityImpact\": \"NONE\", \"vulnerabilityResponseEffort\": \"NOT_DEFINED\"}, \"scenarios\": [{\"lang\": \"en\", \"value\": \"GENERAL\"}]}, {\"format\": \"CVSS\", \"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 3.7, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"LOW\", \"vectorString\": \"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L\", \"integrityImpact\": \"NONE\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"HIGH\", \"availabilityImpact\": \"LOW\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"NONE\"}, \"scenarios\": [{\"lang\": \"en\", \"value\": \"GENERAL\"}]}], \"affected\": [{\"repo\": \"https://github.com/ljharb/qs\", \"modules\": [\"parse\"], \"versions\": [{\"status\": \"affected\", \"version\": \"\u003c 6.14.1\", \"versionType\": \"semver\"}], \"packageName\": \"qs\", \"collectionURL\": \"https://npmjs.com/qs\", \"defaultStatus\": \"affected\"}], \"references\": [{\"url\": \"https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p\", \"tags\": [\"vendor-advisory\"]}, {\"url\": \"https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9\", \"tags\": [\"patch\"]}], \"x_generator\": {\"engine\": \"Vulnogram 0.5.0\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"Improper Input Validation vulnerability in qs (parse modules) allows HTTP DoS.This issue affects qs: \u003c 6.14.1.\\n\\n\\nSummary\\n\\nThe arrayLimit\\u00a0option in qs did not enforce limits for bracket notation (a[]=1\u0026a[]=2), only for indexed notation (a[0]=1). This is a consistency bug; arrayLimit\\u00a0should apply uniformly across all array notations.\\n\\nNote:\\u00a0The default parameterLimit\\u00a0of 1000 effectively mitigates the DoS scenario originally described. With default options, bracket notation cannot produce arrays larger than parameterLimit\\u00a0regardless of arrayLimit, because each a[]=valueconsumes one parameter slot. The severity has been reduced accordingly.\\n\\nDetails\\n\\nThe arrayLimit\\u00a0option only checked limits for indexed notation (a[0]=1\u0026a[1]=2) but did not enforce it for bracket notation (a[]=1\u0026a[]=2).\\n\\nVulnerable code\\u00a0(lib/parse.js:159-162):\\n\\nif (root === \u0027[]\u0027 \u0026\u0026 options.parseArrays) {\\n obj = utils.combine([], leaf); // No arrayLimit check\\n}\\n\\n\\n\\n\\n\\nWorking code\\u00a0(lib/parse.js:175):\\n\\nelse if (index \u003c= options.arrayLimit) { // Limit checked here\\n obj = [];\\n obj[index] = leaf;\\n}\\n\\n\\n\\n\\n\\nThe bracket notation handler at line 159 uses utils.combine([], leaf)\\u00a0without validating against options.arrayLimit, while indexed notation at line 175 checks index \u003c= options.arrayLimit\\u00a0before creating arrays.\\n\\n\\n\\nPoC\\n\\nconst qs = require(\u0027qs\u0027);\\nconst result = qs.parse(\u0027a[]=1\u0026a[]=2\u0026a[]=3\u0026a[]=4\u0026a[]=5\u0026a[]=6\u0027, { arrayLimit: 5 });\\nconsole.log(result.a.length); // Output: 6 (should be max 5)\\n\\n\\n\\n\\n\\nNote on parameterLimit interaction:\\u00a0The original advisory\u0027s \\\"DoS demonstration\\\" claimed a length of 10,000, but parameterLimit\\u00a0(default: 1000) caps parsing to 1,000 parameters. With default options, the actual output is 1,000, not 10,000.\\n\\nImpact\\n\\nConsistency bug in arrayLimit\\u00a0enforcement. With default parameterLimit, the practical DoS risk is negligible since parameterLimit\\u00a0already caps the total number of parsed parameters (and thus array elements from bracket notation). The risk increases only when parameterLimit\\u00a0is explicitly set to a very high value.\", \"supportingMedia\": [{\"type\": \"text/html\", \"value\": \"Improper Input Validation vulnerability in qs (parse modules) allows HTTP DoS.\u003cp\u003eThis issue affects qs: \u0026lt; 6.14.1.\u003c/p\u003e\u003ch3\u003e\u003cbr\u003eSummary\u003c/h3\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003eThe \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;option in qs did not enforce limits for bracket notation (\u003ccode\u003ea[]=1\u0026amp;a[]=2\u003c/code\u003e), only for indexed notation (\u003ccode\u003ea[0]=1\u003c/code\u003e). This is a consistency bug; \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;should apply uniformly across all array notations.\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eNote:\u003c/strong\u003e\u0026nbsp;The default \u003ccode\u003eparameterLimit\u003c/code\u003e\u0026nbsp;of 1000 effectively mitigates the DoS scenario originally described. With default options, bracket notation cannot produce arrays larger than \u003ccode\u003eparameterLimit\u003c/code\u003e\u0026nbsp;regardless of \u003ccode\u003earrayLimit\u003c/code\u003e, because each \u003ccode\u003ea[]=value\u003c/code\u003econsumes one parameter slot. The severity has been reduced accordingly.\u003c/p\u003e\u003ch3\u003eDetails\u003c/h3\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003eThe \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;option only checked limits for indexed notation (\u003ccode\u003ea[0]=1\u0026amp;a[1]=2\u003c/code\u003e) but did not enforce it for bracket notation (\u003ccode\u003ea[]=1\u0026amp;a[]=2\u003c/code\u003e).\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eVulnerable code\u003c/strong\u003e\u0026nbsp;(\u003ccode\u003elib/parse.js:159-162\u003c/code\u003e):\u003c/p\u003e\u003cdiv\u003e\u003cpre\u003eif (root === \u0027[]\u0027 \u0026amp;\u0026amp; options.parseArrays) {\\n obj = utils.combine([], leaf); // No arrayLimit check\\n}\u003c/pre\u003e\u003cdiv\u003e\u003c/div\u003e\u003c/div\u003e\u003cp\u003e\u003cstrong\u003eWorking code\u003c/strong\u003e\u0026nbsp;(\u003ccode\u003elib/parse.js:175\u003c/code\u003e):\u003c/p\u003e\u003cdiv\u003e\u003cpre\u003eelse if (index \u0026lt;= options.arrayLimit) { // Limit checked here\\n obj = [];\\n obj[index] = leaf;\\n}\u003c/pre\u003e\u003cdiv\u003e\u003c/div\u003e\u003c/div\u003e\u003cp\u003eThe bracket notation handler at line 159 uses \u003ccode\u003eutils.combine([], leaf)\u003c/code\u003e\u0026nbsp;without validating against \u003ccode\u003eoptions.arrayLimit\u003c/code\u003e, while indexed notation at line 175 checks \u003ccode\u003eindex \u0026lt;= options.arrayLimit\u003c/code\u003e\u0026nbsp;before creating arrays.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003ch3\u003ePoC\u003c/h3\u003e\u003cp\u003e\u003cstrong\u003e\u003c/strong\u003e\u003c/p\u003e\u003cdiv\u003e\u003cpre\u003econst qs = require(\u0027qs\u0027);\\nconst result = qs.parse(\u0027a[]=1\u0026amp;a[]=2\u0026amp;a[]=3\u0026amp;a[]=4\u0026amp;a[]=5\u0026amp;a[]=6\u0027, { arrayLimit: 5 });\\nconsole.log(result.a.length); // Output: 6 (should be max 5)\u003c/pre\u003e\u003cdiv\u003e\u003c/div\u003e\u003c/div\u003e\u003cp\u003e\u003cstrong\u003eNote on parameterLimit interaction:\u003c/strong\u003e\u0026nbsp;The original advisory\u0027s \\\"DoS demonstration\\\" claimed a length of 10,000, but \u003ccode\u003eparameterLimit\u003c/code\u003e\u0026nbsp;(default: 1000) caps parsing to 1,000 parameters. With default options, the actual output is 1,000, not 10,000.\u003c/p\u003e\u003ch3\u003eImpact\u003c/h3\u003e\u003cp\u003e\u003c/p\u003e\u003cspan style=\\\"background-color: rgb(255, 255, 255);\\\"\u003eConsistency bug in \u003c/span\u003e\u003ccode\u003earrayLimit\u003c/code\u003e\u003cspan style=\\\"background-color: rgb(255, 255, 255);\\\"\u003e\u0026nbsp;enforcement. With default \u003c/span\u003e\u003ccode\u003eparameterLimit\u003c/code\u003e\u003cspan style=\\\"background-color: rgb(255, 255, 255);\\\"\u003e, the practical DoS risk is negligible since \u003c/span\u003e\u003ccode\u003eparameterLimit\u003c/code\u003e\u003cspan style=\\\"background-color: rgb(255, 255, 255);\\\"\u003e\u0026nbsp;already caps the total number of parsed parameters (and thus array elements from bracket notation). The risk increases only when \u003c/span\u003e\u003ccode\u003eparameterLimit\u003c/code\u003e\u003cspan style=\\\"background-color: rgb(255, 255, 255);\\\"\u003e\u0026nbsp;is explicitly set to a very high value.\u003c/span\u003e\", \"base64\": false}]}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-20\", \"description\": \"CWE-20 Improper Input Validation\"}]}], \"providerMetadata\": {\"orgId\": \"7ffcee3d-2c14-4c3e-b844-86c6a321a158\", \"shortName\": \"harborist\", \"dateUpdated\": \"2026-02-10T20:06:42.111Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2025-15284\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-02-10T20:06:42.111Z\", \"dateReserved\": \"2025-12-29T21:36:51.399Z\", \"assignerOrgId\": \"7ffcee3d-2c14-4c3e-b844-86c6a321a158\", \"datePublished\": \"2025-12-29T22:56:45.240Z\", \"assignerShortName\": \"harborist\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
RHSA-2026:2149
Vulnerability from csaf_redhat - Published: 2026-02-05 16:16 - Updated: 2026-06-14 15:10A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le | — |
Workaround
|
A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le | — |
Workaround
|
A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le | — |
A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Kiali 2.17.3 for Red Hat OpenShift Service Mesh 3.2\n\nThis update has a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Kiali 2.17.3, for Red Hat OpenShift Service Mesh 3.2, provides observability for the service mesh by offering a visual representation of the mesh topology and metrics, helping users monitor, trace, and manage efficiently.\n\nSecurity Fix(es):\n\n* kiali-ossmc-rhel9: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n\n* kiali-rhel9: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n\n* kiali-rhel9: Excessive resource consumption when printing error string for host certificate validation in crypto/x509 (CVE-2025-61729)\n\n* kiali-ossmc-rhel9: React Router vulnerable to XSS via Open Redirects (CVE-2026-22029)\n\n* kiali-rhel9: React Router vulnerable to XSS via Open Redirects (CVE-2026-22029)\n\n* kiali-ossmc-rhel9: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)\n\n* kiali-rhel9: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2149",
"url": "https://access.redhat.com/errata/RHSA-2026:2149"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13465",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61729",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-13465",
"url": "https://access.redhat.com/security/cve/cve-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-15284",
"url": "https://access.redhat.com/security/cve/cve-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-61729",
"url": "https://access.redhat.com/security/cve/cve-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2026-22029",
"url": "https://access.redhat.com/security/cve/cve-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification",
"url": "https://access.redhat.com/security/updates/classification"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2149.json"
}
],
"title": "Red Hat Security Advisory: Kiali 2.17.3 for Red Hat OpenShift Service Mesh 3.2",
"tracking": {
"current_release_date": "2026-06-14T15:10:56+00:00",
"generator": {
"date": "2026-06-14T15:10:56+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:2149",
"initial_release_date": "2026-02-05T16:16:04+00:00",
"revision_history": [
{
"date": "2026-02-05T16:16:04+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-05T16:16:11+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:10:56+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Service Mesh 3.2",
"product": {
"name": "Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:service_mesh:3.2::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Service Mesh"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Aa97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770138513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-operator-bundle@sha256%3Af3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770146001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9-operator@sha256%3A447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3Ac602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770142326"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Ad9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c?arch=arm64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770138513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9-operator@sha256%3A46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca?arch=arm64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3Afcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770142326"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Aef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770138513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9-operator@sha256%3Ad1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3A700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770142326"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Aced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe?arch=s390x\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770138513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9-operator@sha256%3A22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f?arch=s390x\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3Ad2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf?arch=s390x\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770142326"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-13465",
"cwe": {
"id": "CWE-1321",
"name": "Improperly Controlled Modification of Object Prototype Attributes (\u0027Prototype Pollution\u0027)"
},
"discovery_date": "2026-01-21T20:01:28.774829+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431740"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: prototype pollution in _.unset and _.omit functions",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue is only exploitable by applications using the _.unset and _.omit functions on an object and allowing user input to determine the path of the property to be removed. This issue only allows the deletion of properties but does not allow overwriting their behavior, limiting the impact to a denial of service. Due to this reason, this vulnerability has been rated with an important severity.\n\nIn Grafana, JavaScript code runs only in the browser, while the server side is all Golang. Therefore, the worst-case scenario is a loss of functionality in the client application inside the browser. To reflect this, the CVSS availability metric and the severity of the Grafana and the Grafana-PCP component have been updated to low and moderate, respectively.\n\nThe lodash dependency is bundled and used by the pcs-web-ui component of the PCS package. In Red Hat Enterprise Linux 8.10, the pcs-web-ui component is no longer included in the PCS package. As a result, RHEL 8.10 does not ship the vulnerable lodash component within PCS and is therefore not-affected by this CVE.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "RHBZ#2431740",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431740"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13465",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13465"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg",
"url": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg"
}
],
"release_date": "2026-01-21T19:05:28.846000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T16:16:04+00:00",
"details": "See Kiali 2.17.3 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.2/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2149"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement strict input validation before passing any property paths to the _.unset and _.omit functions to block attempts to access the prototype chain. Ensure that strings like __proto__, constructor and prototype are blocked, for example.",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: prototype pollution in _.unset and _.omit functions"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T16:16:04+00:00",
"details": "See Kiali 2.17.3 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.2/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2149"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T16:16:04+00:00",
"details": "See Kiali 2.17.3 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.2/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2149"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"cve": "CVE-2026-22029",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"discovery_date": "2026-01-10T04:01:03.694749+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T16:16:04+00:00",
"details": "See Kiali 2.17.3 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.2/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2149"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
}
]
}
RHSA-2026:21658
Vulnerability from csaf_redhat - Published: 2026-06-03 12:58 - Updated: 2026-06-14 15:10A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.18.43 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.18.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.18.43. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:21657\n\nSecurity Fix(es):\n\n* Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code (CVE-2026-35469)\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n* immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution (CVE-2026-29063)\n* @remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects (CVE-2026-22029)\n* lodash: lodash: Arbitrary code execution via untrusted input in template imports (CVE-2026-4800)\n* qs: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n* lodash: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)\n* golang: archive/tar: Unbounded allocation when parsing GNU sparse map (CVE-2025-58183)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:21658",
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13465",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-58183",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29063",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35469",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4800",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_21658.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.18.43 security and extras update",
"tracking": {
"current_release_date": "2026-06-14T15:10:58+00:00",
"generator": {
"date": "2026-06-14T15:10:58+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:21658",
"initial_release_date": "2026-06-03T12:58:58+00:00",
"revision_history": [
{
"date": "2026-06-03T12:58:58+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-03T12:59:48+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:10:58+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.18",
"product": {
"name": "Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.18::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Adc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779845891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779785460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Aa56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779781228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779787591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779779692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779780473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779780853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779781148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Ad5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779779129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1779779300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Ab0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779779426"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779780088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Addb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779780506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779788112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779780031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Ac6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779781165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779782825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779787301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779874967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779779712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779787176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779786961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3Abeb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1779786770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3Ab6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1779785983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779779879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3A5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel9\u0026tag=1779860183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ab239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779780872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Afc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779873953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1779786898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1779779791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1779889998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779778548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779781089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779781080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779782985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Aacdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779782852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Ab24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779780821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779781501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779779641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"product_id": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/rdma-cni-rhel9\u0026tag=1779779641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Abae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779779306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779786567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779845902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1779782749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Af64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779779803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779779425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779779708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779780026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779780608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Aa9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779780022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Adcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779781094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779787334"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779845891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779785460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Aa876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779781228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779787591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Ab40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779779692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779780473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Ac5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779780853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Ae3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779781148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779779129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1779779300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779779426"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779780088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779780506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Acd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779788112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779780031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Aefdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779781165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779782825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779787301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Aeef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779874967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Ad96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779779712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779787176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779786961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3Aef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1779786770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1779785983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Ac74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779779879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3A609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel9\u0026tag=1779860183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779780872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779873953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3Afad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1779780208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3A6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1779860119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1779786898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1779779791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3Ad8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1779889998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779778548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Ae2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779781089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779781080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779782985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Ac4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779782852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Aef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779780821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Aa223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779781501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779779641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"product": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"product_id": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/rdma-cni-rhel9\u0026tag=1779779641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Afefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779779306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779786567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779845902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1779782749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779779803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Afee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779779425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3Aad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779779708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Afdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779780026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779780608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779780022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779781094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779787334"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Aa1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779845891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779785460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779781228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Adf1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779787591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Ace1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779779692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779780473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779780853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Abb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779781148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779779129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1779779300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Af8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779779426"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779780088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779780506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Aeadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779788112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Ad2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779780031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Af49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779781165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779782825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Ac5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779787301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Ad7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779874967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779779712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Adf66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779787176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Afb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779786961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1779786770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1779785983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779779879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3A69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel9\u0026tag=1779860183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779780872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779873953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3Afba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1779780208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3Ad805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1779860119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1779786898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1779779791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1779889998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779778548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779781089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779781080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Ad6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779782985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779782852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Ac4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779780821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Ae6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779781501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Ae8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1779779641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"product_id": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Ae8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/rdma-cni-rhel9\u0026tag=1779779641"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Ac2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779779306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Aae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779786567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Ab7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779845902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3Afdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1779782749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779779803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779779425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779779708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779780026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3Ae456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779780608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779780022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779781094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Afefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779787334"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779785460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779781228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3Aee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779787591"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779779692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779780473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Ab3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779780853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1779781148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1779779129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Ad9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1779779300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779780088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779780506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Ab79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1779788112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Ad01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1779781165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1779782825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Ac3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1779787301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1779874967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779779712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1779787176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1779786961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3Aee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1779786770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3Ad83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1779785983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Aae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1779779879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3Abe82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel9\u0026tag=1779860183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ada8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779780872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1779873953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1779786898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779778548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779781089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1779781080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1779782985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1779782852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Aa10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1779780821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1779781501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Ac34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1779779306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1779786567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779781094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779787334"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64"
},
"product_reference": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-13465",
"cwe": {
"id": "CWE-1321",
"name": "Improperly Controlled Modification of Object Prototype Attributes (\u0027Prototype Pollution\u0027)"
},
"discovery_date": "2026-01-21T20:01:28.774829+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431740"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: prototype pollution in _.unset and _.omit functions",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue is only exploitable by applications using the _.unset and _.omit functions on an object and allowing user input to determine the path of the property to be removed. This issue only allows the deletion of properties but does not allow overwriting their behavior, limiting the impact to a denial of service. Due to this reason, this vulnerability has been rated with an important severity.\n\nIn Grafana, JavaScript code runs only in the browser, while the server side is all Golang. Therefore, the worst-case scenario is a loss of functionality in the client application inside the browser. To reflect this, the CVSS availability metric and the severity of the Grafana and the Grafana-PCP component have been updated to low and moderate, respectively.\n\nThe lodash dependency is bundled and used by the pcs-web-ui component of the PCS package. In Red Hat Enterprise Linux 8.10, the pcs-web-ui component is no longer included in the PCS package. As a result, RHEL 8.10 does not ship the vulnerable lodash component within PCS and is therefore not-affected by this CVE.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "RHBZ#2431740",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431740"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13465",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13465"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg",
"url": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg"
}
],
"release_date": "2026-01-21T19:05:28.846000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement strict input validation before passing any property paths to the _.unset and _.omit functions to block attempts to access the prototype chain. Ensure that strings like __proto__, constructor and prototype are blocked, for example.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: prototype pollution in _.unset and _.omit functions"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-58183",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-29T23:01:50.573951+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2407258"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to be able to process a specially crafted GNU tar pax 1.0 archive with the application using the archive/tar package. Additionally, this issue can cause the Go application to allocate a large amount of memory, eventually leading to an out-of-memory condition and resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "RHBZ#2407258",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2407258"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-58183",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58183"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://go.dev/cl/709861",
"url": "https://go.dev/cl/709861"
},
{
"category": "external",
"summary": "https://go.dev/issue/75677",
"url": "https://go.dev/issue/75677"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI",
"url": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4014",
"url": "https://pkg.go.dev/vuln/GO-2025-4014"
}
],
"release_date": "2025-10-29T22:10:14.376000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map"
},
{
"cve": "CVE-2026-4800",
"cwe": {
"id": "CWE-94",
"name": "Improper Control of Generation of Code (\u0027Code Injection\u0027)"
},
"discovery_date": "2026-03-31T20:01:21.918257+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453496"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: lodash: Arbitrary code execution via untrusted input in template imports",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "In the context of Red Hat Enterprise Linux, the grafana and grafana-pcp packages execute the affected JavaScript entirely client-side within the user\u0027s browser. Consequently, the attack surface is strictly restricted to the local browser environment.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"category": "external",
"summary": "RHBZ#2453496",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453496"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4800",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4800"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm",
"url": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c",
"url": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c"
}
],
"release_date": "2026-03-31T19:25:55.987000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: lodash: Arbitrary code execution via untrusted input in template imports"
},
{
"cve": "CVE-2026-22029",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"discovery_date": "2026-01-10T04:01:03.694749+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
},
{
"cve": "CVE-2026-29063",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-03-06T19:00:57.982727+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445291"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation of this vulnerability requires that an attacker is able to provide arbitrary data to clients of this library in a way that calls the affected functions with data the attacker controls. In most deployments, the ability to provide data in this fashion requires that an attacker has some degree of privileges to access the affected applications.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "RHBZ#2445291",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445291"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29063",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29063"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw",
"url": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw"
}
],
"release_date": "2026-03-06T18:25:22.438000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-35469",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-13T03:52:35+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457729"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting OpenShift Container Platform. An attacker with specific elevated cluster roles, such as those permitting pod port forwarding, execution, attachment, or node proxying, could exploit a vulnerability in the SPDY streaming code of Kubelet, CRI-O, and kube-apiserver, leading to unresponsiveness of these critical components.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "RHBZ#2457729",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457729"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35469",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469"
}
],
"release_date": "2026-04-13T23:59:59+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-03T12:58:58+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21658"
},
{
"category": "workaround",
"details": "To mitigate this issue, review and restrict the assignment of Kubernetes cluster roles `pods/portforward (create)`, `pods/exec (create)`, `pods/attach (create)`, and `nodes/proxy (get/create)` to untrusted users or service accounts. Ensure that only authorized and necessary entities possess these permissions. Modifying RBAC policies can impact the functionality of applications and services that rely on these permissions; careful testing is recommended.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bacd152bb8e069bf989d35c5e3d19c7d2a7caa5704fd17911afb8e24505fe74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:0bc2f4f14a5a2fb5298242cc8b05366782012a08200b026ab4c199cf9322fb5a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:96b15349f15af700fe522049aa81fc1d7f608eed473a262d103cde9e62c26605_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ddb46e2a154dea051204213a2992489839cd412436ded9416fb67bb33c2723d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:12fdafa4162e087e237771b0ec8c3392f1106b8c5290229639317c6b53f5d83e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:28dee60c9e4fcb3a2b739142a3cd5da70a02ae46a3026c3320f4e7a944009ebb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7820ddd5a82a30ab9ca25a8e2b2c8d8e0e09612a02090f5a260cffdfc3e97c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7b41e14074e2073b34ad74bec5642c36f3f2b90e3caed34d5327cc9d90b61d08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:76ed86cc596ad718f9af6235d3fcf83470d8de0238fe03d2f3fd9e48b218429a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:b79030a66c82c63a65f898ba30f528e24cbafe7206e2a4c21b286763af768821_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:cd8517f6945677dbc0bb8fe8f8e2f49d075d4f1f6f5b94a807761eaaf23cfe6d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:eadc66249cbde612c467d3185d98e9615d0be77b4c1159fa8d7d10bc5195c5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2da0a4f5fe314ab982c7bf39915065ab841510b675a6b322522ba63248fbd01b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:2e2224824503d12e1c34460aabd22bd6f471bd6ac26446124b674e7d434e3b72_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:97ca85e0ecda62baf09d5ac553d22f1de1c6e34cc2ef912659edfe597c012bda_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fc0b6db747ed6c69a488501006e836db38ed58368bb39f0a03dc362e6362ca60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6991c491552dec9afc62e10e97ddbf1dd0afe9cd0c5458801567235cb5cd12ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:69ae141aa20c2fe9ad78f4aff4d04b829c349ed7b503c3af9b4945d16c5e3139_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:954e2dc06a60de03d67adb1ea0f816a3e53d1d958d1260fb25c64dd8bbbaa681_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e2136255544aac54fa4b8bab1a1f5368f3b52908eb631d2163f5de466babdecd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:07ddbba2998d63b6d9f0c4a84eda9c372ee533755c83f294b57743d0b91801d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:0e19a8fd58078d2b54e0b76585067a540049ee570cd393abafc1805bdbad8eac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:7d23c3dba6ac082bbc1c70f31240891696dc531bf4bed27fdf66cf5c1e460def_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:851e3a6747ba96df7a140896909301fc34e646a4e5cbc180ff4bf89b4d5dc75d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:023d6b8debb4e5a9782b6fe79fd8c25f8413d76264233a876a134bb2594c5076_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:1073d9f07922d1e95986922b4bfec5664a2bb317298f1806fd51afbb76cf5457_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d7f5765429909858d79a6ca4aa66208d5edb1a07ff35ff178d0c6668da37128d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:eef13365a817b8ff922b717f409adb60d5ae8440a1caea467b298d07f5eafaa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:671eb9ceefb93853388c8a24687575ae684c1b66b27821a31262808bee82eaf3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:68fbdb23d366d771e12689725aaeae07a86d37e0c97eba162642a33aa79d04b0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:8105880c4fb11d97341b8b937962cf702c1181082877b6cd798b3569e9a4c7ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:df66e802187c02acbe1e5cf7345265bc9aaeca5a06e8164f7734d03f7b7d49d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fad7c9ea2f199e6c443affa23a6857b1d6ef23fddb1c15d6e95e9e3820db5d49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:fba178e923424e804e564e12d7157c0d34ac1e0a04f65651e50ea664d5e400d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:6c2556f2f320da160bf0adcd46593ac0d16d421186edc14c73c706f9ba9983b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d805078d99650ea6c3ede84266ef6db6d9095fe02af1947ef2619e6620b18a3d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:0d74d402ca497ddbc4033e1093e7050d2e850ba9bc51c204ee7661b4018876a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:a1b1967267dfb6e277d0b90481dd45ddb59ebe87c11f809f452733355a183fb0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:dc7fdba5bc8b6c31032f4e291bdfff745c2cf5d5af38eaa0e96f4ef4ba233943_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:2170815d728d981d66866597bb42ce1c5fcfdccc1efba98a4c950f463632312d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:58ce78f26ef809f49851b89a87b652a9cf7896343195ec44fe75f9c92a4280e2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:7203e5515d0fb017119bed8e239af52c0d93a6e4a8b5876abd25c2bd6577fe3c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fb2830dc9659187a83e385dc184f5325e0b732640a71bb68f15f1db28b86054b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2c713a2cf1a2edd00e6300e8a3905c6896a9486fca5c7135c861390aa8e6f4aa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:345a86b8e22c19fb6198191ed8ab7f46583c8676798889b2df5f34699b833b61_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3b97f68d53c9384385256d0bccc8d3e021d90c558a8009cd58d172c5baca1eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:3faca1896d27b565962bcb1d251c904360bd3ba968a3e8c2efe626b96c747dca_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:755856ce75c62a65d8b26dcf457967394bd01049993bc4f2b1ab835587d132fb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:81cf1a3e78b90afff2c9dde0343ffc4d7996f429163ffc1853b81e2c54d51452_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:df1fd92b33966881d21a015c2ef62f53eaa4d340854ce0190cb77371756c033b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:ee7436ce256804752f246bebe8fdeed4e3fbe3cfccec2b953e5496b25615c618_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:6e5ae108893c1c6b3c8507f61bf602e51085afc80d19873748367b74dee86c72_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:93bb7abcadc1cedc576aab38549574f195188f72d5e8df6a423e65bdbabb14f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a56dd19998ef38b14c3d8f40384275eb4459ef1ac3462a11b944832d08449a0d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:a876e8ea3dbcbbbfeaef7c856a83e5b1feecae4431642bbb2c81d4f03f95c558_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6a0312c4c9e1039ae46a7d9949e25f2627dfe03f36ebde9461f5d904cf5d4127_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:821475de5dfc120afa01babd7d166c50579f63a2f100bcbd25e0958b048882f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b3fbd8e986cc44c8f89d20c9d9eb0efeee1fe7d88dd6b80c7c40e2300ecb11e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c5410fea1e98e717806bae5b3049b98c12b17705cbddf9a1973e0a0e9c8d4aef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5afc59d6385765715c7c39d2bd0ac13da03c0d62d3bfd809f8842254405d8a5d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:8ff0d3e5505f9cdcb4d396227b08567d69470c957dfaecce88f68948d62c78c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b40b7216cab79ead503f18a14032836865bd95befbb8237dc3a69ca1839e7519_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ce1bac7cfcaec56b153e1c2c74aa06e463fd5836e6ce64e62bc3fb4dc89e2b13_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168ba43c5ddc626f430dafebaaecf88ce5570a6b8133b9db945e974690c51e7a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:425cd0fcf6df03bde0bd6a0720691ec790d8653c59e3657ccbc8f90a878d913e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:73bbeeeadacf5d4646d4ebbed33b54a7e9d40a1bb5b57711ecfde7e0d95efea7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:88af117e5fd363b0fd6a984f1978276921d612188755f658d48ed0afd2e18205_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:450ee47356cc61ae4096eb99592f8ff5abccd4b76c288259028bf3d071325367_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:6b9b444bbbdcce82a87677d0bbf70f1db7a7393740ea325a9ef0ef1b20953c6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:bb20f3f351fea58eb4d324c9188a7acca0c6adf0dda6d3bd6a9d3b8474585502_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:e3efe30ce1373de8c1f4845f0cbd6b36ba76750ed0b3a6be4fedb26c3aea8cd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1b0757fc0e5e341d8c8a3f47733a1e4aa4ba193ed3460b9b3f21b14973684727_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:1c242cb4214db2a4f4c0bc579a9b614c236de217b2ed813c07b380d10d7c43c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:32145bbb59143c4b8584a3576d30c3caf01433d8a1c454e18a259fba83244eaf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:d5c9d143c4da6f184fa7ea18cb985b4802747368a5a33a5da356186c0ac56928_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0b2faaf663c771201dcc5342f2c5f4f68104fbccd6457302e1a454ddb70b1e1a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:4387073d4d738761542094d660fc90741e3b073b274da18d785ceb99963b7f10_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8ffd7800ecd095dab87c0230d8bd551bac710456acbe99729a9a804c5bbe6e1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d9245d5ee46bf770f546abb9ade8d4f29655e3042f4f566e33bb00c2c51c043b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:79f96d518cf9f109a8e499a9eb2a6e0d0f1efb39bc6667d1abc706b03e1fb04c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:beb4e6df340035c3438e616877772154e0634c5f66eb497e4d14e6f83dcac5b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ee52a55dffeeb12f9cb4b526c829278c70d5b43fc56d916c2130624a22859c09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:ef62a2a5f2a89f1718e3a0c39f8367dc8c14dcfb5de92164f4e3e24d4058c065_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:11a45d0ef10badc1f7dadab6d544c72cf4f230b36b9c96b169628a606172cd92_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:2a6e7349713d93057df9a46680b41d84f5a11796fd3d38acaacfbf03fe5b1204_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:4cd1572dc9abd205b447471d66ec22951360d925271dd430359ce8f276fd49c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fa5b9624a1d75be54f6701f4a6b921ce04075f1626464792cb1172e3a5fd3bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:227b0f98da1544e58344f9ef0314c718ef03d7a910351dec099e4c1fbe226a0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:8a854326170fa07d5134f838040846a233341cada6f03f91155d6e061e2d546c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:b6739fe60db605356b108948215b0777e814351d7d6546873f5ba01f385d3850_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:d83f5132a286ea5dd8a187d3af8b48b30e8da0ef8aeb8189f39d9b0a1d303899_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:136a9c451b09b665f290ac5d015e938b0a1eabb52b6d9b746a0b683f323c983e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:716563fffd86eb9d1f0714129fed9213208f2daeb0d3bb7c0ac9b19ed3c2a9e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d8b81e8d19d11b934abf66f83653bbf488aa95a11543a43669abf43fa5ae2055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:353b87789a7f894a249e1e2b00de23d5b6af2f59012d2353926b350062dae152_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:812e77084f61c9de79cdf82a256d35d9cea938f02a54f3e0fa0b16281da98ea9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:8c3cd5e8bb765fc6bce1cdd5aadacb8444f6d4e47bda9329bcc576cf8920b57f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:0ffe9b1826cf0c1afa350d396061a3e32546d56552c5ce5724265da0073ba899_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:836de3ed9d55328b949b357c228cde2194530800ca4129622e6b0fc10c148e2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:ae1cffc2fdab7b31107e7ccfd778cf25f59b352aaebb0a6d560399e66b2ce2fe_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:c74b9df16a4902c2e6b00f84e8fac25c23a9696ec513adc897491e59ce1d551e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:16c8fcf196ac6d500bb313d4d6b4eac8b0fd9d1caa49cb825171703715549a2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:27939501f1756ac0fdae7e9de4aac9428296502eed5e3704cddc461715c2c311_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b239693e9b1ef8dfa2099bf6ea1c6a924fc11c74406c10e57c1122f54e07e938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:da8e68680652356bee80ebafc0ace16c389796271b3ec7c2af7fa9da1a911126_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c6fc342e148cd89f2fa84880a6617222aa6575981a4e97ba0f3556d1527716f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d01e3dbbad500a810fd11d28277626bdd87a8d20d332b38958723cc012e4030a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:efdbcd443fee0897a45c0fbabce552077cd9489aa3b4d7cef83614f8439c5ec3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f49f14814f9684066a09b32d645970d1d7198235240aea0505286d372a9c61db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:46bfe7de46cec7ecb8003d347d14cd1cf5da3354ef1f495841862254b759c303_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a67269159e2de237c657627b5f16691e5a4b08141e4a6d4e52a99fac8be0ffd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:709f52be9933a09924a64b2f21625671f523a366b50133a6de6c3adc7fa0b664_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:8d103b96ae1e68c03f119c3edef8361ff0a882ecc01e26781fa0e24de2532957_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:5db7699c73f03be480f1bdd5fa6a16ce6d94e924a85542715ed131f21ebb55b6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6befdc6f4e087592922b66f889ef072c648f49cb6b2322ef52afec6a670addd9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c3a19582346b4efcb0dca446b946a3689c9bb7e59b3aad6931fbeb8f0d1d4fd5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c5daa4dd0014d7bfdfcc4a070d8279050c3a0f74bae03efbf13b84083878f6c6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:36c965bdcf9617cd45b65e25c2e0e108473f4e542f8cb047d50a563750699aa2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:42cdc54df43652313b9e896ed5702e068d661e4e89561bb3b7e9d26d40aaacc9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:6b2ecada93bc576419950eb2e0e0d15de776b355a63733663bbcbbc973d98314_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:d96b7accda8d86a0ac415003c13b72f9722ccaf37dc4ff2ff6614a203480e6ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:5d0acea7d90cf75940f0c49b0ba44e4a95d2b7a067ea849e906dd2c9f08fe3a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:609664ddf657aa66db2fc362fca630d42c81a1072f1e984c29ef644979f04da4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:69ad55900c427a46f22f272c814ea56568bbf3e77238197711a44344b405df31_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:be82808d12d00879b29879673e4c7871c91fb9bc315c06a62dace1a1ff316ce2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:195cb50d5d372388dbdb7d72f796290caed95b85ebc1a44266096470693cf461_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:1eede6d04d98e105e2fd44ed97034708e1b5b5c85a7060b647ce6b33f2f713f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:b7837cc544ac7c5c300b8f5427a0b8a4090904cc9c7d5374bbec01106e2f0a95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:00d16fec918d25e03f265986b91f8196ddac57fdd2ad75e7e93ab8e650787386_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:5814a3e200527bfc67c02c2515423366b8224aca142b60a5e55787f888785e11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:d2dd5d80878b0cb3a26a93159b4667d61f6e61e55203fea5359bffcdbb06f42b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:74890b25b00f156efdea710c9c5c20c27bc3e1183174ee24e9377c9ad90c6873_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:7582fad891a42d2468f9571816a733cc0a993856755a41283078911f93e04a8a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:77c621a61aa75b975e7dafd55e2d439375e347510a3b2f886f242523238f897c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:d6db070bc70b53e30c41d234638810b771316accad458b17f649a6ba314f6de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:33247eaaf3ea15d33bd73b9ddeeab5ee5b39f4903fd9fa2a31200e1a0d68f75c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:4952203297615de742669c1a9baab3235951d917f5604801d33e9004cb4a8e21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:5017b7849b0d2f48b784dc224e3d0b5a44c6576b07c66961d02a5700d4463d42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6f5ba3f94ee093eb9a6c9171d88c42a3d6563929b80e2ee536e015a8af14f4f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:09d2d92c4213cfe2d8fc8dd6fa23c377652fac672d30e59fa7ffa0a6d010be23_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:35a41d9a5c9f78a16367dff4b60a07d7c05c351d9951c6a5f40932a09ed42744_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:acdc936c04994270e5202a2ea0ab6904ecf5875f67629202955fc1227bd368ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:c4b9249ae222d3c13671b1aa9b87bd318543fc72cf9c2487e93d4624cf250330_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:5580c56ca2b5549d914d4dbc6fd6fce560724a5144e8185b407a1dfea3c7e0eb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:719479e39755715095471d8c69be447b70465992b61a3bbae7efbd148e1f9b67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:a223d32a0a3813d023258a7a9d339ea889a29f19ea9afc72de06e654c679a9c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e6a8be5078af340abd7815f8d64d3780c93b009b29dbead05992f7bb97aaf562_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:a10365cb24fb255fa42150d6edb40a697ff62e5a224b606366719f2944ec1d9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:b24c9edd8a8fd670d884d1f11093a10948ef4da3e359890dbfaf4abe7a0c9157_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:c4cac31bb807e784a3924a9ac682610232d09e265899a3d094df1f813c3f5c66_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:ef6a5129dcdd5c28310cedcb1d295c8a1a6ba3fffea55ab70fd4e9b4faa7699d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:4d9a266f55ad2952bf351d138a1cd28a74f37328d1745da22943ba9174c575a7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:72492b50da907f2d8bf57994b682d0ed59d861001ccb463170dc6c9a32010788_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fee9724c935ad602cbe6658e9117880ad18e60229a43bb29b92b076aec09867b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:34160c2645b8bd5af87f630d7dde7367b2229126b9643457cd0e3dd4d3dd3dbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b0cba3eb7fc89593a033560a53ca759e110945bd4f595fa27d7dba2c72428c52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:f8c7bcb2ad8d558a31f3c5982943478a134fe84a3b4125f6a59111f8b8596dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:77d17449b209ba86a5baa6e7d1001bfa351950ef4076be6656690ac054b01418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:89c6379fb0008c393e668ba392179da12de6f741552bc57eea5992e2e6868fb8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ad0d81e32c32945b5fd193caa070d7513b5489a936381955065a83e2c56033f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:986b3d179a36c4ce24e70a43d89df98bd3bbe27cc68ee9be62ed04718f109feb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:99b2051a92a6c7613be12a41dc60afb3cf0a412db2e5b80c05756fb3fc150421_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:fdb2ae8dea82b4d6475f7933a53bfdd2066ac7ca38351349b7cc397a315e730d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:57f1934ed447f557fb8788426303ac030c0a5706efc858c72507241bdbd7c521_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5d407f003f51feee2d5d3b1e36da52f0aa50142deff077675c8df9cb235548dc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e456ac00b96cae6ecdfd2c440eb0a38994bb17119a58160f4425891a96752b2a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:1fee56e4b8dedfd3fd2fda54f33e4de5520c647147de515b511406fd2da5ade8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:91f7e4eb042c70cbcfc835ddf46ff8798bc425362d3ca936a74e865df70d7a24_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:a9515061255a072a2779c99f014cb59454f8372d202df795c3b3edc406e5e340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:100ffbc247eab92cf9432f4e10a68c952599c9f839b605d2957a106dd821569f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:192c72e63a4c8d4fa9e530397b7313efdb88a8daa7336b3f2ee09524c5281afb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:2e53fa54e3dc53d59ebd01d1f284b5289193e3954043eccf5359026d102aa0d9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fefd4e10fbe8644bbe23b489a80f368458954bd1e3875d780d01109d0655b2d7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4f8c67880437ea7cdef640c179210fe0ed9edf2ee008430f12fb35f7a7c6d42c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:53501688f1b5bb3252573200e9a81eea2e9f2b2b915ea3c6725f555f2b063523_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:6c6e025a0667525ced1de434c666ffbdbf27b92f00a888a71d8149ee3e06d05d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:dcd3ff4d6c158efbd72ce4caaa245aefaa2e3062c7e032b87c4ab0c47613766b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:2cdf676b4fcd525973c22b6f5dfe46a41917c45b6f17d1ac690ef7c93744d5d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6a466a4954d520fd320e2a59b8c4b2ba8d09b71e596ee6eb32bb40824b799316_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6e8128820841f5aa86cb961a92651579a17c2a40ab84d172bf36aba92c331e0f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:ae4ecaebe2443a8e1c9e70ca04c4fc891e02147600d51ee23eafce1ba88339de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:bae268e719a87bb6d399252dec29be82e2cd54221fc7b13b2cff1c9cd7ac0981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c2140d596103d4c624a60482fb392657caf219a31216976e76dffb0679e99b09_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:c34f18ee9241257fcf8417d69759e22792ba78315f0824358749d2eea4609f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:fefe2b85372a58a8a8dccf9d13d6b2def8b728922ef04ff64e23c97939de2ce6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:11b68e1a2052026425c418b48014cb04a68619900e61347486872ee5fb086228_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:1f9b293d920a2cd427ea177ab8163538e243f266550e52b7e8b4fea0a12c1c08_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:fdb5c9e9f481ed9dcc07d6b67db7e78e2366f4343db452e7bc444c65d2da0a56_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:765c546ee71d2cf17c7369284524942d6a244b126e92bcc551657336e929b144_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:7eb1f4dbd5e02f908c9a27a74ad871a028c5acdd220a33f40ba6fdfa42078891_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:e8e4330c36c62061270b28c6b280900d5246b43839e6322dddb980f3c58ba34f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:2e35ed828c2ea8772b2e506eb72eeb6da24030cc836bd73b6bb9233e322e69c2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:969658923fa5f9113f07e38f7a747915f0c2880742e303359b45f54934579658_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:f64e5e32b1c2ea12447aa6f2f47470b32461d8b7d1fb94702f780750a3e976e9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:65ea5dc2a00efffd6181fdb2076841d6ba6eadbbb478aa3721784c14e9812a49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:748c7d40af4816fcdaa64355960e67d641e5d5d0a45b11a8db3c1f24fe4ec49a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:8b19acba4073254f6e81fee56375f6de4d16b24bf8276f05ed0e43f4ed77e06f_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
}
]
}
RHSA-2026:2256
Vulnerability from csaf_redhat - Published: 2026-02-09 01:49 - Updated: 2026-06-14 15:11A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x | — |
Workaround
|
A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x | — |
Workaround
|
A flaw was found in urllib3 Python library that could lead to a Denial of Service condition. A remote, malicious server can exploit this flaw by responding to a client request with an HTTP message that uses an excessive number of chained compression algorithms. This unlimited decompression chain causes the client system to consume a virtually unbounded amount of CPU resources and memory. The high resource usage leads to service disruption, making the application unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x | — |
A decompression handling flaw has been discovered in urllib3. When streaming a compressed response, urllib3 can perform decoding or decompression based on the HTTP Content-Encoding header (e.g., gzip, deflate, br, or zstd). The library must read compressed data from the network and decompress it until the requested chunk size is met. Any resulting decompressed data that exceeds the requested amount is held in an internal buffer for the next read operation. The decompression logic could cause urllib3 to fully decode a small amount of highly compressed data in a single operation. This can result in excessive resource consumption (high CPU usage and massive memory allocation for the decompressed data; CWE-409) on the client side, even if the application only requested a small chunk of data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x | — |
Workaround
|
A flaw was found in Storybook, a tool for building user interface components. This vulnerability can lead to the unintended exposure of sensitive information. When Storybook is built in a directory containing a `.env` file and then published online, environment variables from that file may be included in the publicly accessible build artifacts. This allows anyone with access to the published Storybook to view these potentially confidential variables.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x | — |
urllib3 is an HTTP client library for Python. urllib3's streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. Starting in version 1.22 and prior to version 2.6.3, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client. Applications and libraries are affected when they stream content from untrusted sources by setting `preload_content=False` when they do not disable redirects. Users should upgrade to at least urllib3 v2.6.3, in which the library does not decode content of redirect responses when `preload_content=False`. If upgrading is not immediately possible, disable redirects by setting `redirect=False` for requests to untrusted source.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat multicluster global hub v1.5.3 general availability release images, which provide security fixes, bug fixes, and updated container images.\n\nRed Hat Product Security has rated this update as having a security impact of Important. \nA Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE links in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat multicluster global hub is a set of components that enable you to import one or more hub clusters and manage them from a single hub cluster.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2256",
"url": "https://access.redhat.com/errata/RHSA-2026:2256"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-12816",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66418",
"url": "https://access.redhat.com/security/cve/CVE-2025-66418"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66471",
"url": "https://access.redhat.com/security/cve/CVE-2025-66471"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-68429",
"url": "https://access.redhat.com/security/cve/CVE-2025-68429"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-21441",
"url": "https://access.redhat.com/security/cve/CVE-2026-21441"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2256.json"
}
],
"title": "Red Hat Security Advisory: Red Hat multicluster global hub 1.5.3 security update",
"tracking": {
"current_release_date": "2026-06-14T15:11:12+00:00",
"generator": {
"date": "2026-06-14T15:11:12+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:2256",
"initial_release_date": "2026-02-09T01:49:44+00:00",
"revision_history": [
{
"date": "2026-02-09T01:49:44+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-09T01:49:45+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:11:12+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Multicluster Global Hub 1.5.4",
"product": {
"name": "Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:multicluster_globalhub:1.5::el9"
}
}
}
],
"category": "product_family",
"name": "Multicluster Global Hub"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3Ac360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770109405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3Af91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770112233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770112094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-operator-bundle@sha256%3A3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770124784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770113032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3Aa6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1769643671"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3Adc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770109405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3Adcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770112233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770112094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3Ac9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770113032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1769643671"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3Abbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770109405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3Afd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770112233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3Aae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770112094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3Af35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770113032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1769643671"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770109405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770112233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770112094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3Ab6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770113032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3Abedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1769643671"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64 as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x as a component of Multicluster Global Hub 1.5.4",
"product_id": "Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.5.4"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-12816",
"cwe": {
"id": "CWE-179",
"name": "Incorrect Behavior Order: Early Validation"
},
"discovery_date": "2025-11-25T20:01:05.875196+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2417097"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products due to an interpretation conflict in the node-forge library. An unauthenticated attacker could exploit this flaw by crafting malicious ASN.1 structures, leading to a bypass of cryptographic verifications and security decisions in affected applications. This impacts various Red Hat products that utilize node-forge for cryptographic operations.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "RHBZ#2417097",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2417097"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-12816",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-12816"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge",
"url": "https://github.com/digitalbazaar/forge"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/pull/1124",
"url": "https://github.com/digitalbazaar/forge/pull/1124"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq"
},
{
"category": "external",
"summary": "https://kb.cert.org/vuls/id/521113",
"url": "https://kb.cert.org/vuls/id/521113"
},
{
"category": "external",
"summary": "https://www.npmjs.com/package/node-forge",
"url": "https://www.npmjs.com/package/node-forge"
}
],
"release_date": "2025-11-25T19:15:50.243000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T01:49:44+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2256"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T01:49:44+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2256"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-66418",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-05T17:01:20.277857+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419455"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in urllib3 Python library that could lead to a Denial of Service condition. A remote, malicious server can exploit this flaw by responding to a client request with an HTTP message that uses an excessive number of chained compression algorithms. This unlimited decompression chain causes the client system to consume a virtually unbounded amount of CPU resources and memory. The high resource usage leads to service disruption, making the application unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3: Unbounded decompression chain leads to resource exhaustion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66418"
},
{
"category": "external",
"summary": "RHBZ#2419455",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419455"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66418",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66418"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66418",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66418"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/24d7b67eac89f94e11003424bcf0d8f7b72222a8",
"url": "https://github.com/urllib3/urllib3/commit/24d7b67eac89f94e11003424bcf0d8f7b72222a8"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-gm62-xv2j-4w53",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-gm62-xv2j-4w53"
}
],
"release_date": "2025-12-05T16:02:15.271000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T01:49:44+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2256"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3: Unbounded decompression chain leads to resource exhaustion"
},
{
"cve": "CVE-2025-66471",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2025-12-05T17:02:21.597728+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419467"
}
],
"notes": [
{
"category": "description",
"text": "A decompression handling flaw has been discovered in urllib3. When streaming a compressed response, urllib3 can perform decoding or decompression based on the HTTP Content-Encoding header (e.g., gzip, deflate, br, or zstd). The library must read compressed data from the network and decompress it until the requested chunk size is met. Any resulting decompressed data that exceeds the requested amount is held in an internal buffer for the next read operation. The decompression logic could cause urllib3 to fully decode a small amount of highly compressed data in a single operation. This can result in excessive resource consumption (high CPU usage and massive memory allocation for the decompressed data; CWE-409) on the client side, even if the application only requested a small chunk of data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3 Streaming API improperly handles highly compressed data",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66471"
},
{
"category": "external",
"summary": "RHBZ#2419467",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419467"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66471",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66471"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66471",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66471"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/c19571de34c47de3a766541b041637ba5f716ed7",
"url": "https://github.com/urllib3/urllib3/commit/c19571de34c47de3a766541b041637ba5f716ed7"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-2xpw-w6gg-jr37",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-2xpw-w6gg-jr37"
}
],
"release_date": "2025-12-05T16:06:08.531000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T01:49:44+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2256"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 Streaming API improperly handles highly compressed data"
},
{
"cve": "CVE-2025-68429",
"cwe": {
"id": "CWE-538",
"name": "Insertion of Sensitive Information into Externally-Accessible File or Directory"
},
"discovery_date": "2025-12-17T23:03:29.948214+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2423460"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Storybook, a tool for building user interface components. This vulnerability can lead to the unintended exposure of sensitive information. When Storybook is built in a directory containing a `.env` file and then published online, environment variables from that file may be included in the publicly accessible build artifacts. This allows anyone with access to the published Storybook to view these potentially confidential variables.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Storybook: Storybook: Information disclosure via unexpected bundling of environment variables",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat as it can lead to the unintended exposure of sensitive environment variables. This occurs when a Storybook project is built using the `storybook build` command in a directory containing a `.env` file, and the resulting bundle is subsequently published to a web-accessible location. Storybook instances built without `.env` files or run in development mode (`storybook dev`) are not affected.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68429"
},
{
"category": "external",
"summary": "RHBZ#2423460",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2423460"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68429",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68429"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68429",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68429"
},
{
"category": "external",
"summary": "https://github.com/storybookjs/storybook/security/advisories/GHSA-8452-54wp-rmv6",
"url": "https://github.com/storybookjs/storybook/security/advisories/GHSA-8452-54wp-rmv6"
},
{
"category": "external",
"summary": "https://storybook.js.org/blog/security-advisory",
"url": "https://storybook.js.org/blog/security-advisory"
}
],
"release_date": "2025-12-17T22:26:55.732000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T01:49:44+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2256"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Storybook: Storybook: Information disclosure via unexpected bundling of environment variables"
},
{
"cve": "CVE-2026-21441",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-01-07T23:01:59.422078+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2427726"
}
],
"notes": [
{
"category": "description",
"text": "urllib3 is an HTTP client library for Python. urllib3\u0027s streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. Starting in version 1.22 and prior to version 2.6.3, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client. Applications and libraries are affected when they stream content from untrusted sources by setting `preload_content=False` when they do not disable redirects. Users should upgrade to at least urllib3 v2.6.3, in which the library does not decode content of redirect responses when `preload_content=False`. If upgrading is not immediately possible, disable redirects by setting `redirect=False` for requests to untrusted source.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
],
"known_not_affected": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-21441"
},
{
"category": "external",
"summary": "RHBZ#2427726",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2427726"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-21441",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-21441"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-21441",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-21441"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/8864ac407bba8607950025e0979c4c69bc7abc7b",
"url": "https://github.com/urllib3/urllib3/commit/8864ac407bba8607950025e0979c4c69bc7abc7b"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99"
}
],
"release_date": "2026-01-07T22:09:01.936000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T01:49:44+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.14/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2256"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:1f5bd44374885ad72d52fe069a09b2270f42da2e29fb688357a637b9dd1893aa_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:dcbdff150742e549f0bce567bfbd117c0c63c49ea6817f67109833b1e94ef0c3_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:f91a72e4c89b3cf646505ab2a3aad8457b159a3c2de5e9908aaca35389f01153_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:fd8ad9e8f5e1eee77c9b7410d14f5ee01f38bee09935065a2b7d33c39c844e3b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:65e1e93c8ea20fe257ac85c371404df1b13c1966e07b0b5d605ae30ef0cec42f_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:bbe544ff9335b6d8b9900d3153e3b935173b0f6c0a0a462a4f3db3143fa62d5b_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c360b6c6f742fb8099e1155dbcca719493084968c00506eda2e251d7706c4dff_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:dc828bf3a86cb0680173e896579f7bd411a0e4f0962ab0ed9903e69c65c13a26_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:34776d2d4c468f6da8137323cf284e72e66919a7f3e2a84c9e699a50d064179f_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:3d278f0a951bace167aede4fe297422c5acecf9d3a9a8b9f7afa71a610983d0a_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:868a8557d8781e1c69748b98da394af9612d0880220fff1d693377cf833be711_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ae22809ffeede1eba4bbcdddb0b712dec45c30148c7cb39128a872f072b59972_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:3f81ee9fd7755e0bedf48d3c7afd3ccf8f4fb6b338133efd1360e65a5a90c386_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:39f4686f26cc8bec840f6c77088935e05d8e822be15f63f55d1de58e0ff9cdcc_s390x",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:48184ec85768d791a0b8a96a15794f0e0f7f6f54ade9b40b782ef9c4f0b4eb5b_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:a6d74a6341b8333885d75f5b51fa5998017d10833876c6a09dfec72d8d5e672c_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:bedf96d186a5ad327b07ad886ee71351d4c98d47642cb44a29dc15ce8e20ed16_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:690e7fb759c6be1e04f7a0aad07bf9a0eee936a2366fc1ad3ba9dafe7ef8b9cd_amd64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:b6efb2a533db272b844688e44d6af15f271a00053c1515496b091e4b6909e850_arm64",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:c9f875963c8f28eba52965eaf1fbddecdc57e076d117f283f7e3fe91eee5fb5c_ppc64le",
"Multicluster Global Hub 1.5.4:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f35eface5a07a2ee689969466e9162c65cd2660176fdc699776cf057cedb5e81_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)"
}
]
}
RHSA-2026:2350
Vulnerability from csaf_redhat - Published: 2026-02-09 15:50 - Updated: 2026-06-14 15:11A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x | — |
Workaround
|
A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x | — |
Workaround
|
A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x | — |
Workaround
|
An ASN.1 Denial of Service (Dos) vulnerability exists in the node-forge asn1.fromDer function within forge/lib/asn1.js. The ASN.1 DER parser implementation (_fromDer) recurses for every constructed ASN.1 value (SEQUENCE, SET, etc.) and lacks a guard limiting recursion depth. An attacker can craft a small DER blob containing a very large nesting depth of constructed TLVs which causes the Node.js V8 engine to exhaust its call stack and throw RangeError: Maximum call stack size exceeded, crashing or incapacitating the process handling the parse. This is a remote, low-cost Denial-of-Service against applications that parse untrusted ASN.1 objects.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x | — |
Workaround
|
A flaw was found in Fulcio, a free-to-use certificate authority. This vulnerability allows a denial of service (DoS) due to excessive memory allocation when processing a malicious OpenID Connect (OIDC) identity token containing numerous period characters.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64 | — |
A flaw was found in Sigstore Timestamp Authority. This vulnerability allows a denial of service via excessive memory allocation when processing a specially crafted Object Identifier or Content-Type header.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x | — |
A path traversal vulnerability has been discovered in the jdPDF npm library. User control of the first argument of the loadFile method in the node.js build allows local file inclusion/path traversal. If given the possibility to pass unsanitized paths to the loadFile method, a user can retrieve file contents of arbitrary files in the local file system the node process is running in. The file contents are included verbatim in the generated PDFs. Only the node.js builds of the library are affected, namely the `dist/jspdf.node.js` and `dist/jspdf.node.min.js`.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x | — |
Workaround
|
A flaw was found in GnuPG. An attacker can provide crafted input to the `armor_filter` function, which incorrectly increments an index variable, leading to an out-of-bounds write. This memory corruption vulnerability may allow for information disclosure and could potentially lead to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64 | — |
Workaround
|
A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Updated images are now available for Red Hat Advanced Cluster Security\n(RHACS), which typically include new features, bug fixes, and/or\nsecurity patches.",
"title": "Topic"
},
{
"category": "general",
"text": "See the release notes (link in the references section) for a\ndescription of the fixes and enhancements in this particular release.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2350",
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-12816",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-58183",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66031",
"url": "https://access.redhat.com/security/cve/CVE-2025-66031"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66506",
"url": "https://access.redhat.com/security/cve/CVE-2025-66506"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66564",
"url": "https://access.redhat.com/security/cve/CVE-2025-66564"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-68428",
"url": "https://access.redhat.com/security/cve/CVE-2025-68428"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-68973",
"url": "https://access.redhat.com/security/cve/CVE-2025-68973"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.9/html-single/release_notes/index#about-this-release-493_release-notes-49",
"url": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.9/html-single/release_notes/index#about-this-release-493_release-notes-49"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2350.json"
}
],
"title": "Red Hat Security Advisory: RHACS 4.9.3 security and bug fix update",
"tracking": {
"current_release_date": "2026-06-14T15:11:26+00:00",
"generator": {
"date": "2026-06-14T15:11:26+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:2350",
"initial_release_date": "2026-02-09T15:50:42+00:00",
"revision_history": [
{
"date": "2026-02-09T15:50:42+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-09T15:50:46+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:11:26+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product": {
"name": "Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:advanced_cluster_security:4.9::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Advanced Cluster Security for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3Acfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769065259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-operator-bundle@sha256%3Ad8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Abaa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Ae2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3Ae9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Ac1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Aa75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3Acf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3Ad63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769065259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Ae87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Abd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Ad9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3Aa3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Ade3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769065259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Af49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Ae5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Abe9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769065259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3Ad9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Adb417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3Ac916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-12816",
"cwe": {
"id": "CWE-179",
"name": "Incorrect Behavior Order: Early Validation"
},
"discovery_date": "2025-11-25T20:01:05.875196+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2417097"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products due to an interpretation conflict in the node-forge library. An unauthenticated attacker could exploit this flaw by crafting malicious ASN.1 structures, leading to a bypass of cryptographic verifications and security decisions in affected applications. This impacts various Red Hat products that utilize node-forge for cryptographic operations.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "RHBZ#2417097",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2417097"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-12816",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-12816"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge",
"url": "https://github.com/digitalbazaar/forge"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/pull/1124",
"url": "https://github.com/digitalbazaar/forge/pull/1124"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq"
},
{
"category": "external",
"summary": "https://kb.cert.org/vuls/id/521113",
"url": "https://kb.cert.org/vuls/id/521113"
},
{
"category": "external",
"summary": "https://www.npmjs.com/package/node-forge",
"url": "https://www.npmjs.com/package/node-forge"
}
],
"release_date": "2025-11-25T19:15:50.243000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-58183",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-29T23:01:50.573951+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2407258"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to be able to process a specially crafted GNU tar pax 1.0 archive with the application using the archive/tar package. Additionally, this issue can cause the Go application to allocate a large amount of memory, eventually leading to an out-of-memory condition and resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "RHBZ#2407258",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2407258"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-58183",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58183"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://go.dev/cl/709861",
"url": "https://go.dev/cl/709861"
},
{
"category": "external",
"summary": "https://go.dev/issue/75677",
"url": "https://go.dev/issue/75677"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI",
"url": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4014",
"url": "https://pkg.go.dev/vuln/GO-2025-4014"
}
],
"release_date": "2025-10-29T22:10:14.376000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map"
},
{
"cve": "CVE-2025-66031",
"cwe": {
"id": "CWE-674",
"name": "Uncontrolled Recursion"
},
"discovery_date": "2025-11-26T23:01:36.363253+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2417397"
}
],
"notes": [
{
"category": "description",
"text": "An ASN.1 Denial of Service (Dos) vulnerability exists in the node-forge asn1.fromDer function within forge/lib/asn1.js. The ASN.1 DER parser implementation (_fromDer) recurses for every constructed ASN.1 value (SEQUENCE, SET, etc.) and lacks a guard limiting recursion depth. An attacker can craft a small DER blob containing a very large nesting depth of constructed TLVs which causes the Node.js V8 engine to exhaust its call stack and throw RangeError: Maximum call stack size exceeded, crashing or incapacitating the process handling the parse. This is a remote, low-cost Denial-of-Service against applications that parse untrusted ASN.1 objects.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: node-forge ASN.1 Unbounded Recursion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66031"
},
{
"category": "external",
"summary": "RHBZ#2417397",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2417397"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66031",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66031"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66031",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66031"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/commit/260425c6167a38aae038697132483b5517b26451",
"url": "https://github.com/digitalbazaar/forge/commit/260425c6167a38aae038697132483b5517b26451"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-554w-wpv2-vw27",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-554w-wpv2-vw27"
}
],
"release_date": "2025-11-26T22:23:26.013000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "node-forge: node-forge ASN.1 Unbounded Recursion"
},
{
"cve": "CVE-2025-66506",
"cwe": {
"id": "CWE-405",
"name": "Asymmetric Resource Consumption (Amplification)"
},
"discovery_date": "2025-12-04T23:01:20.507333+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419056"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Fulcio, a free-to-use certificate authority. This vulnerability allows a denial of service (DoS) due to excessive memory allocation when processing a malicious OpenID Connect (OIDC) identity token containing numerous period characters.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/sigstore/fulcio: Fulcio: Denial of Service via crafted OpenID Connect (OIDC) token",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat as Fulcio, a certificate authority used for issuing code signing certificates, is susceptible to a denial of service when processing a specially crafted OpenID Connect (OIDC) token. This could lead to resource exhaustion and service unavailability in affected Red Hat products that utilize Fulcio.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66506"
},
{
"category": "external",
"summary": "RHBZ#2419056",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419056"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66506",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66506"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66506",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66506"
},
{
"category": "external",
"summary": "https://github.com/sigstore/fulcio/commit/765a0e57608b9ef390e1eeeea8595b9054c63a5a",
"url": "https://github.com/sigstore/fulcio/commit/765a0e57608b9ef390e1eeeea8595b9054c63a5a"
},
{
"category": "external",
"summary": "https://github.com/sigstore/fulcio/security/advisories/GHSA-f83f-xpx7-ffpw",
"url": "https://github.com/sigstore/fulcio/security/advisories/GHSA-f83f-xpx7-ffpw"
}
],
"release_date": "2025-12-04T22:04:41.637000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/sigstore/fulcio: Fulcio: Denial of Service via crafted OpenID Connect (OIDC) token"
},
{
"cve": "CVE-2025-66564",
"cwe": {
"id": "CWE-405",
"name": "Asymmetric Resource Consumption (Amplification)"
},
"discovery_date": "2025-12-04T23:01:11.786030+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419054"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Sigstore Timestamp Authority. This vulnerability allows a denial of service via excessive memory allocation when processing a specially crafted Object Identifier or Content-Type header.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/sigstore/timestamp-authority: Sigstore Timestamp Authority: Denial of Service via excessive OID or Content-Type header parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. The Sigstore Timestamp Authority, a service for issuing RFC 3161 timestamps, is prone to excessive memory allocation. This occurs when processing untrusted OID payloads with many period characters or malformed Content-Type headers. An unauthenticated attacker could exploit this flaw to trigger a denial of service in affected Red Hat products that utilize this component.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66564"
},
{
"category": "external",
"summary": "RHBZ#2419054",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419054"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66564",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66564"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66564",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66564"
},
{
"category": "external",
"summary": "https://github.com/sigstore/timestamp-authority/commit/0cae34e197d685a14904e0bad135b89d13b69421",
"url": "https://github.com/sigstore/timestamp-authority/commit/0cae34e197d685a14904e0bad135b89d13b69421"
},
{
"category": "external",
"summary": "https://github.com/sigstore/timestamp-authority/security/advisories/GHSA-4qg8-fj49-pxjh",
"url": "https://github.com/sigstore/timestamp-authority/security/advisories/GHSA-4qg8-fj49-pxjh"
}
],
"release_date": "2025-12-04T22:37:13.307000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/sigstore/timestamp-authority: Sigstore Timestamp Authority: Denial of Service via excessive OID or Content-Type header parsing"
},
{
"cve": "CVE-2025-68428",
"cwe": {
"id": "CWE-73",
"name": "External Control of File Name or Path"
},
"discovery_date": "2026-01-05T22:01:15.703824+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2427236"
}
],
"notes": [
{
"category": "description",
"text": "A path traversal vulnerability has been discovered in the jdPDF npm library. User control of the first argument of the loadFile method in the node.js build allows local file inclusion/path traversal. If given the possibility to pass unsanitized paths to the loadFile method, a user can retrieve file contents of arbitrary files in the local file system the node process is running in. The file contents are included verbatim in the generated PDFs. Only the node.js builds of the library are affected, namely the `dist/jspdf.node.js` and `dist/jspdf.node.min.js`.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "jspdf: jsPDF Local File Inclusion/Path Traversal vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68428"
},
{
"category": "external",
"summary": "RHBZ#2427236",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2427236"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68428",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68428"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68428",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68428"
},
{
"category": "external",
"summary": "https://github.com/parallax/jsPDF/commit/a688c8f479929b24a6543b1fa2d6364abb03066d",
"url": "https://github.com/parallax/jsPDF/commit/a688c8f479929b24a6543b1fa2d6364abb03066d"
},
{
"category": "external",
"summary": "https://github.com/parallax/jsPDF/releases/tag/v4.0.0",
"url": "https://github.com/parallax/jsPDF/releases/tag/v4.0.0"
},
{
"category": "external",
"summary": "https://github.com/parallax/jsPDF/security/advisories/GHSA-f8cm-6447-x5h2",
"url": "https://github.com/parallax/jsPDF/security/advisories/GHSA-f8cm-6447-x5h2"
}
],
"release_date": "2026-01-05T21:43:55.169000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.6,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "jspdf: jsPDF Local File Inclusion/Path Traversal vulnerability"
},
{
"cve": "CVE-2025-68973",
"cwe": {
"id": "CWE-675",
"name": "Multiple Operations on Resource in Single-Operation Context"
},
"discovery_date": "2025-12-28T17:00:44.161022+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425966"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in GnuPG. An attacker can provide crafted input to the `armor_filter` function, which incorrectly increments an index variable, leading to an out-of-bounds write. This memory corruption vulnerability may allow for information disclosure and could potentially lead to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "GnuPG: GnuPG: Information disclosure and potential arbitrary code execution via out-of-bounds write",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. The flaw in GnuPG\u0027s `armor_filter` function allows an attacker with local access to provide crafted input, potentially leading to information disclosure and arbitrary code execution due to an out-of-bounds write. Exploitation requires high attack complexity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68973"
},
{
"category": "external",
"summary": "RHBZ#2425966",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425966"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68973",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68973"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68973",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68973"
},
{
"category": "external",
"summary": "https://github.com/gpg/gnupg/blob/ff30683418695f5d2cc9e6cf8c9418e09378ebe4/g10/armor.c#L1305-L1306",
"url": "https://github.com/gpg/gnupg/blob/ff30683418695f5d2cc9e6cf8c9418e09378ebe4/g10/armor.c#L1305-L1306"
},
{
"category": "external",
"summary": "https://github.com/gpg/gnupg/commit/115d138ba599328005c5321c0ef9f00355838ca9",
"url": "https://github.com/gpg/gnupg/commit/115d138ba599328005c5321c0ef9f00355838ca9"
},
{
"category": "external",
"summary": "https://gpg.fail/memcpy",
"url": "https://gpg.fail/memcpy"
},
{
"category": "external",
"summary": "https://news.ycombinator.com/item?id=46403200",
"url": "https://news.ycombinator.com/item?id=46403200"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2025/12/28/5",
"url": "https://www.openwall.com/lists/oss-security/2025/12/28/5"
}
],
"release_date": "2025-12-28T16:19:11.019000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "To mitigate this issue, users should avoid processing untrusted or unverified input with GnuPG. Exercise caution when handling GnuPG-encrypted or signed data from unknown or suspicious sources, as specially crafted input could trigger the vulnerability. This operational control reduces the attack surface by limiting exposure to malicious data.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "GnuPG: GnuPG: Information disclosure and potential arbitrary code execution via out-of-bounds write"
},
{
"cve": "CVE-2026-22029",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"discovery_date": "2026-01-10T04:01:03.694749+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
}
]
}
RHSA-2026:2456
Vulnerability from csaf_redhat - Published: 2026-02-10 17:06 - Updated: 2026-06-14 15:11A local privilege escalation vulnerability has been discovered in containerd. This vulnerability is the result of an overly broad default permission which allows local users on the host to potentially access the metadata store, the content store and the contents of Kubernetes local volumes. The contents of volumes might include setuid binaries, which could allow a local user on the host to elevate privileges on the host.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Workaround
|
A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Workaround
|
A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Workaround
|
A flaw was found in runc. This attack is a more sophisticated variant of CVE-2019-16884, which was a flaw that allowed an attacker to trick runc into writing the LSM process labels for a container process into a dummy tmpfs file and thus not apply the correct LSM labels to the container process. The mitigation applied for CVE-2019-16884 was fairly limited and effectively only caused runc to verify that when we write LSM labels that those labels are actual procfs files.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
Workaround
|
A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Workaround
|
A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — |
A flaw was found in glob. This vulnerability allows arbitrary command execution via processing files with malicious names when the glob command-line interface (CLI) is used with the -c/--cmd option, enabling shell metacharacters to trigger command injection.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Workaround
|
A flaw was found in auth0/node-jws. This vulnerability allows improper signature verification via using the HS256 (Hash-based Message Authentication Code using SHA-256) algorithm under specific conditions, where applications use the jws.createVerify() function for HMAC (Keyed-Hash Message Authentication Code) algorithms and user-provided data from the JSON (JavaScript Object Notation) Web Signature protected header or payload in HMAC secret lookup routines.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Workaround
|
An ASN.1 Denial of Service (Dos) vulnerability exists in the node-forge asn1.fromDer function within forge/lib/asn1.js. The ASN.1 DER parser implementation (_fromDer) recurses for every constructed ASN.1 value (SEQUENCE, SET, etc.) and lacks a guard limiting recursion depth. An attacker can craft a small DER blob containing a very large nesting depth of constructed TLVs which causes the Node.js V8 engine to exhaust its call stack and throw RangeError: Maximum call stack size exceeded, crashing or incapacitating the process handling the parse. This is a remote, low-cost Denial-of-Service against applications that parse untrusted ASN.1 objects.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Workaround
|
A flaw was found in urllib3 Python library that could lead to a Denial of Service condition. A remote, malicious server can exploit this flaw by responding to a client request with an HTTP message that uses an excessive number of chained compression algorithms. This unlimited decompression chain causes the client system to consume a virtually unbounded amount of CPU resources and memory. The high resource usage leads to service disruption, making the application unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
A decompression handling flaw has been discovered in urllib3. When streaming a compressed response, urllib3 can perform decoding or decompression based on the HTTP Content-Encoding header (e.g., gzip, deflate, br, or zstd). The library must read compressed data from the network and decompress it until the requested chunk size is met. Any resulting decompressed data that exceeds the requested amount is held in an internal buffer for the next read operation. The decompression logic could cause urllib3 to fully decode a small amount of highly compressed data in a single operation. This can result in excessive resource consumption (high CPU usage and massive memory allocation for the decompressed data; CWE-409) on the client side, even if the application only requested a small chunk of data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
Workaround
|
A path normalization bypass has been discovered in Traefik. When Traefik is configured to route the requests to a backend using a matcher based on the path; if the request path contains an encoded restricted character from the following set ('/', '', 'Null', ';', '?', '#'), it’s possible to target a backend, exposed using another router, by-passing the middlewares chain.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Workaround
|
urllib3 is an HTTP client library for Python. urllib3's streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. Starting in version 1.22 and prior to version 2.6.3, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client. Applications and libraries are affected when they stream content from untrusted sources by setting `preload_content=False` when they do not disable redirects. Users should upgrade to at least urllib3 v2.6.3, in which the library does not decode content of redirect responses when `preload_content=False`. If upgrading is not immediately possible, disable redirects by setting `redirect=False` for requests to untrusted source.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Dev Spaces 3.26.0 has been released.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Dev Spaces provides a cloud developer workspace server and a browser-based IDE built for teams and organizations. Dev Spaces runs in OpenShift and is well-suited for container-based development.\nThe 3.26 release is based on Eclipse Che 7.113 and uses the DevWorkspace engine to provide support for workspaces based on devfile v2.1 and v2.2.\nUsers still using the v1 standard should migrate as soon as possible.\nhttps://devfile.io/docs/2.2.0/migrating-to-devfile-v2\nDev Spaces supports OpenShift EUS releases v4.16 and higher. Users are expected to update to supported OpenShift releases in order to continue to get Dev Spaces updates.\nhttps://access.redhat.com/support/policy/updates/openshift#crw",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2456",
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
},
{
"category": "external",
"summary": "https://access.redhat.com/documentation/en-us/red_hat_openshift_dev_spaces/3.26/html/administration_guide/installing-devspaces",
"url": "https://access.redhat.com/documentation/en-us/red_hat_openshift_dev_spaces/3.26/html/administration_guide/installing-devspaces"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2024-25621",
"url": "https://access.redhat.com/security/cve/CVE-2024-25621"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-12816",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-52881",
"url": "https://access.redhat.com/security/cve/CVE-2025-52881"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-58183",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61729",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-64756",
"url": "https://access.redhat.com/security/cve/CVE-2025-64756"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-65945",
"url": "https://access.redhat.com/security/cve/CVE-2025-65945"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66031",
"url": "https://access.redhat.com/security/cve/CVE-2025-66031"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66418",
"url": "https://access.redhat.com/security/cve/CVE-2025-66418"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66471",
"url": "https://access.redhat.com/security/cve/CVE-2025-66471"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66490",
"url": "https://access.redhat.com/security/cve/CVE-2025-66490"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-21441",
"url": "https://access.redhat.com/security/cve/CVE-2026-21441"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2456.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Dev Spaces 3.26.0 Release.",
"tracking": {
"current_release_date": "2026-06-14T15:11:32+00:00",
"generator": {
"date": "2026-06-14T15:11:32+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:2456",
"initial_release_date": "2026-02-10T17:06:01+00:00",
"revision_history": [
{
"date": "2026-02-10T17:06:01+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-10T17:06:03+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:11:32+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product": {
"name": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_devspaces:3.26::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Dev Spaces (RHOSDS)"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"product_id": "registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/server-rhel9@sha256%3A60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769680738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"product_id": "registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/code-rhel9@sha256%3Aaa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769804221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"product_id": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/code-sshd-rhel9@sha256%3Aeaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769791331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"product_id": "registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/configbump-rhel9@sha256%3Af818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769595755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"product_id": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/dashboard-rhel9@sha256%3A65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769685154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"product_id": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/imagepuller-rhel9@sha256%3A0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769539518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"product_id": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/jetbrains-ide-rhel9@sha256%3A55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770052193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"product_id": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/machineexec-rhel9@sha256%3Abe63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769466457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"product_id": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openvsx-rhel9@sha256%3Ade30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769691754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"product_id": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/devspaces-rhel9-operator@sha256%3Abc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769797105"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"product_id": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pluginregistry-rhel9@sha256%3A870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769869786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"product_id": "registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/traefik-rhel9@sha256%3A3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769638073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"product_id": "registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/udi-rhel9@sha256%3Ab520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770164598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"product_id": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/udi-base-rhel10@sha256%3A7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770046359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"product": {
"name": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"product_id": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/udi-base-rhel9@sha256%3Ab998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da?arch=ppc64le\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770162394"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"product": {
"name": "registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"product_id": "registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/code-rhel9@sha256%3A772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769804221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"product": {
"name": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"product_id": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/code-sshd-rhel9@sha256%3A51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769791331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"product": {
"name": "registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"product_id": "registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/configbump-rhel9@sha256%3Ae0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769595755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"product": {
"name": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"product_id": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/dashboard-rhel9@sha256%3Aba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769685154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"product": {
"name": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"product_id": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"product_identification_helper": {
"purl": "pkg:oci/imagepuller-rhel9@sha256%3A2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769539518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"product": {
"name": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"product_id": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"product_identification_helper": {
"purl": "pkg:oci/jetbrains-ide-rhel9@sha256%3A4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770052193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"product": {
"name": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"product_id": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/machineexec-rhel9@sha256%3A65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769466457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"product": {
"name": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"product_id": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openvsx-rhel9@sha256%3Ab709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769691754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"product": {
"name": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"product_id": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/devspaces-rhel9-operator@sha256%3Afd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769797105"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"product": {
"name": "registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"product_id": "registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/devspaces-operator-bundle@sha256%3Ac72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770186534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"product": {
"name": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"product_id": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pluginregistry-rhel9@sha256%3A4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769869786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"product": {
"name": "registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"product_id": "registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/server-rhel9@sha256%3A1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769680738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"product": {
"name": "registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"product_id": "registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"product_identification_helper": {
"purl": "pkg:oci/traefik-rhel9@sha256%3Ae8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769638073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"product": {
"name": "registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"product_id": "registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/udi-rhel9@sha256%3A2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770164598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"product": {
"name": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"product_id": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/udi-base-rhel10@sha256%3Acc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770046359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"product": {
"name": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"product_id": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"product_identification_helper": {
"purl": "pkg:oci/udi-base-rhel9@sha256%3Acc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70?arch=amd64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770162394"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"product": {
"name": "registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"product_id": "registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/code-rhel9@sha256%3A60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769804221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"product": {
"name": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"product_id": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"product_identification_helper": {
"purl": "pkg:oci/code-sshd-rhel9@sha256%3Ac4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769791331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"product": {
"name": "registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"product_id": "registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/configbump-rhel9@sha256%3A1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769595755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"product": {
"name": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"product_id": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"product_identification_helper": {
"purl": "pkg:oci/dashboard-rhel9@sha256%3A7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769685154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"product": {
"name": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"product_id": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/imagepuller-rhel9@sha256%3A454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769539518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"product": {
"name": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"product_id": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"product_identification_helper": {
"purl": "pkg:oci/jetbrains-ide-rhel9@sha256%3A6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770052193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"product": {
"name": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"product_id": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/machineexec-rhel9@sha256%3A5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769466457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"product": {
"name": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"product_id": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openvsx-rhel9@sha256%3Affe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769691754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"product": {
"name": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"product_id": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/devspaces-rhel9-operator@sha256%3A8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769797105"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"product": {
"name": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"product_id": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pluginregistry-rhel9@sha256%3Afd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769869786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"product": {
"name": "registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"product_id": "registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/server-rhel9@sha256%3A377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769680738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"product": {
"name": "registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"product_id": "registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"product_identification_helper": {
"purl": "pkg:oci/traefik-rhel9@sha256%3A0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769638073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x",
"product": {
"name": "registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x",
"product_id": "registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x",
"product_identification_helper": {
"purl": "pkg:oci/udi-rhel9@sha256%3Af592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770164598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"product": {
"name": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"product_id": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/udi-base-rhel10@sha256%3Aa05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770046359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"product": {
"name": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"product_id": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/udi-base-rhel9@sha256%3A276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec?arch=s390x\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770162394"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"product": {
"name": "registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"product_id": "registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"product_identification_helper": {
"purl": "pkg:oci/code-rhel9@sha256%3Aa85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769804221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"product": {
"name": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"product_id": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"product_identification_helper": {
"purl": "pkg:oci/code-sshd-rhel9@sha256%3Ae2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769791331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"product": {
"name": "registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"product_id": "registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"product_identification_helper": {
"purl": "pkg:oci/configbump-rhel9@sha256%3A8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769595755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"product": {
"name": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"product_id": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/dashboard-rhel9@sha256%3A998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769685154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"product": {
"name": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"product_id": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"product_identification_helper": {
"purl": "pkg:oci/imagepuller-rhel9@sha256%3A43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769539518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"product": {
"name": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"product_id": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/jetbrains-ide-rhel9@sha256%3A819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770052193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"product": {
"name": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"product_id": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/machineexec-rhel9@sha256%3Ac06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769466457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"product": {
"name": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"product_id": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openvsx-rhel9@sha256%3A024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769691754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"product": {
"name": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"product_id": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"product_identification_helper": {
"purl": "pkg:oci/devspaces-rhel9-operator@sha256%3Ab8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769797105"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"product": {
"name": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"product_id": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pluginregistry-rhel9@sha256%3Abc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769869786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"product": {
"name": "registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"product_id": "registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"product_identification_helper": {
"purl": "pkg:oci/server-rhel9@sha256%3A4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769680738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"product": {
"name": "registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"product_id": "registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"product_identification_helper": {
"purl": "pkg:oci/traefik-rhel9@sha256%3A8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1769638073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"product": {
"name": "registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"product_id": "registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"product_identification_helper": {
"purl": "pkg:oci/udi-rhel9@sha256%3Ada6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770164598"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"product": {
"name": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"product_id": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/udi-base-rhel10@sha256%3Ab4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770046359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"product": {
"name": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"product_id": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"product_identification_helper": {
"purl": "pkg:oci/udi-base-rhel9@sha256%3A10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162?arch=arm64\u0026repository_url=registry.redhat.io/devspaces\u0026tag=1770162394"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x"
},
"product_reference": "registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64"
},
"product_reference": "registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64"
},
"product_reference": "registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64"
},
"product_reference": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x"
},
"product_reference": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64"
},
"product_reference": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x"
},
"product_reference": "registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64"
},
"product_reference": "registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64"
},
"product_reference": "registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x"
},
"product_reference": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64"
},
"product_reference": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64"
},
"product_reference": "registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64"
},
"product_reference": "registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x"
},
"product_reference": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64"
},
"product_reference": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64"
},
"product_reference": "registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64"
},
"product_reference": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64"
},
"product_reference": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x"
},
"product_reference": "registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64"
},
"product_reference": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x"
},
"product_reference": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64"
},
"product_reference": "registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x"
},
"product_reference": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64"
},
"product_reference": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64"
},
"product_reference": "registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64"
},
"product_reference": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64"
},
"product_reference": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x"
},
"product_reference": "registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64"
},
"product_reference": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64"
},
"product_reference": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x"
},
"product_reference": "registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64"
},
"product_reference": "registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x"
},
"product_reference": "registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64"
},
"product_reference": "registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x"
},
"product_reference": "registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64"
},
"product_reference": "registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
},
"product_reference": "registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x"
},
"product_reference": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64"
},
"product_reference": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64"
},
"product_reference": "registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64"
},
"product_reference": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x"
},
"product_reference": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64"
},
"product_reference": "registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64"
},
"product_reference": "registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le"
},
"product_reference": "registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64 as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64"
},
"product_reference": "registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x as a component of Red Hat OpenShift Dev Spaces (RHOSDS) 3.26",
"product_id": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
},
"product_reference": "registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x",
"relates_to_product_reference": "Red Hat OpenShift Dev Spaces (RHOSDS) 3.26"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-25621",
"cwe": {
"id": "CWE-279",
"name": "Incorrect Execution-Assigned Permissions"
},
"discovery_date": "2025-11-06T19:01:04.402278+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2413190"
}
],
"notes": [
{
"category": "description",
"text": "A local privilege escalation vulnerability has been discovered in containerd. This vulnerability is the result of an overly broad default permission which allows local users on the host to potentially access the metadata store, the content store and the contents of Kubernetes local volumes. The contents of volumes might include setuid binaries, which could allow a local user on the host to elevate privileges on the host.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/containerd/containerd: containerd local privilege escalation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2024-25621"
},
{
"category": "external",
"summary": "RHBZ#2413190",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2413190"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2024-25621",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-25621"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-25621",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2024-25621"
},
{
"category": "external",
"summary": "https://github.com/containerd/containerd/blob/main/docs/rootless.md",
"url": "https://github.com/containerd/containerd/blob/main/docs/rootless.md"
},
{
"category": "external",
"summary": "https://github.com/containerd/containerd/commit/7c59e8e9e970d38061a77b586b23655c352bfec5",
"url": "https://github.com/containerd/containerd/commit/7c59e8e9e970d38061a77b586b23655c352bfec5"
},
{
"category": "external",
"summary": "https://github.com/containerd/containerd/security/advisories/GHSA-pwhc-rpq9-4c8w",
"url": "https://github.com/containerd/containerd/security/advisories/GHSA-pwhc-rpq9-4c8w"
}
],
"release_date": "2025-11-06T18:36:21.566000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
},
{
"category": "workaround",
"details": "The system administrator on the host can manually chmod the directories to not\nhave group or world accessible permissions:\n```\nchmod 700 /var/lib/containerd\nchmod 700 /run/containerd/io.containerd.grpc.v1.cri\nchmod 700 /run/containerd/io.containerd.sandbox.controller.v1.shim\n```\nAn alternative mitigation would be to run containerd in rootless mode.",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 7.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/containerd/containerd: containerd local privilege escalation"
},
{
"cve": "CVE-2025-12816",
"cwe": {
"id": "CWE-179",
"name": "Incorrect Behavior Order: Early Validation"
},
"discovery_date": "2025-11-25T20:01:05.875196+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2417097"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products due to an interpretation conflict in the node-forge library. An unauthenticated attacker could exploit this flaw by crafting malicious ASN.1 structures, leading to a bypass of cryptographic verifications and security decisions in affected applications. This impacts various Red Hat products that utilize node-forge for cryptographic operations.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "RHBZ#2417097",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2417097"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-12816",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-12816"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge",
"url": "https://github.com/digitalbazaar/forge"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/pull/1124",
"url": "https://github.com/digitalbazaar/forge/pull/1124"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq"
},
{
"category": "external",
"summary": "https://kb.cert.org/vuls/id/521113",
"url": "https://kb.cert.org/vuls/id/521113"
},
{
"category": "external",
"summary": "https://www.npmjs.com/package/node-forge",
"url": "https://www.npmjs.com/package/node-forge"
}
],
"release_date": "2025-11-25T19:15:50.243000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-52881",
"cwe": {
"id": "CWE-59",
"name": "Improper Link Resolution Before File Access (\u0027Link Following\u0027)"
},
"discovery_date": "2025-10-17T14:19:18.652000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2404715"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in runc. This attack is a more sophisticated variant of CVE-2019-16884, which was a flaw that allowed an attacker to trick runc into writing the LSM process labels for a container process into a dummy tmpfs file and thus not apply the correct LSM labels to the container process. The mitigation applied for CVE-2019-16884 was fairly limited and effectively only caused runc to verify that when we write LSM labels that those labels are actual procfs files.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "runc: opencontainers/selinux: container escape and denial of service due to arbitrary write gadgets and procfs write redirects",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat considers this as an Important flaw since the impact is limited to local attack with minimal privileges in order to jeopardize the environment.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-52881"
},
{
"category": "external",
"summary": "RHBZ#2404715",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2404715"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-52881",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-52881"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-52881",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-52881"
},
{
"category": "external",
"summary": "https://github.com/opencontainers/runc/security/advisories/GHSA-cgrx-mc8f-2prm",
"url": "https://github.com/opencontainers/runc/security/advisories/GHSA-cgrx-mc8f-2prm"
},
{
"category": "external",
"summary": "https://github.com/opencontainers/selinux/pull/237",
"url": "https://github.com/opencontainers/selinux/pull/237"
}
],
"release_date": "2025-11-05T09:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
},
{
"category": "workaround",
"details": "Potential mitigations for this issue include:\n\n* Using rootless containers, as doing so will block most of the inadvertent writes (runc would run with reduced privileges, making attempts to write to procfs files ineffective).\n* Based on our analysis, neither AppArmor or SELinux can protect against the full version of the redirected write attack. The container runtime is generally privileged enough to write to arbitrary procfs files, which is more than sufficient to cause a container breakout.",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "runc: opencontainers/selinux: container escape and denial of service due to arbitrary write gadgets and procfs write redirects"
},
{
"cve": "CVE-2025-58183",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-29T23:01:50.573951+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2407258"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to be able to process a specially crafted GNU tar pax 1.0 archive with the application using the archive/tar package. Additionally, this issue can cause the Go application to allocate a large amount of memory, eventually leading to an out-of-memory condition and resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "RHBZ#2407258",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2407258"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-58183",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58183"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://go.dev/cl/709861",
"url": "https://go.dev/cl/709861"
},
{
"category": "external",
"summary": "https://go.dev/issue/75677",
"url": "https://go.dev/issue/75677"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI",
"url": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4014",
"url": "https://pkg.go.dev/vuln/GO-2025-4014"
}
],
"release_date": "2025-10-29T22:10:14.376000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map"
},
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"cve": "CVE-2025-64756",
"cwe": {
"id": "CWE-78",
"name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)"
},
"discovery_date": "2025-11-17T18:01:28.077927+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2415451"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in glob. This vulnerability allows arbitrary command execution via processing files with malicious names when the glob command-line interface (CLI) is used with the -c/--cmd option, enabling shell metacharacters to trigger command injection.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "glob: glob: Command Injection Vulnerability via Malicious Filenames",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in glob allows arbitrary command execution when the `glob` command-line interface is used with the `-c/--cmd` option to process files with malicious names. The vulnerability is triggered by shell metacharacters in filenames, leading to command injection. The glob CLI tool utilizes the -c option to execute shell commands over the files which matched the searched pattern by using the shell:true parameter when creating the subprocess which will further execute the command informed via \u0027-c\u0027 option, this parameter allows the shell meta characters to be used and processed when executing the command. Given that information glob misses to sanitize the file name to eliminate such characters and expressions from the filename, leading to code execution as when performing the shell expansion such characters will be interpreted as shell commands.\n\nTo exploit this vulnerability the targeted system should run the glob CLI over a file with a maliciously crafted filename, additionally the attacker needs to have enough permission to create such file or trick the user to download and process the required file with the glob CLI.\n\nThis flaw is present in the command line interface of the nodejs-glob package. When the package is used by npm, the command line interface is not used at all, so it cannot be triggered. However, the command line interface implementation is still present on the system, but not directly exposed to the user\u0027s $PATH. To reflect this condition, nodejs packages have been rated with a low severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-64756"
},
{
"category": "external",
"summary": "RHBZ#2415451",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2415451"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-64756",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-64756"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-64756",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-64756"
},
{
"category": "external",
"summary": "https://github.com/isaacs/node-glob/commit/47473c046b91c67269df7a66eab782a6c2716146",
"url": "https://github.com/isaacs/node-glob/commit/47473c046b91c67269df7a66eab782a6c2716146"
},
{
"category": "external",
"summary": "https://github.com/isaacs/node-glob/security/advisories/GHSA-5j98-mcp5-4vw2",
"url": "https://github.com/isaacs/node-glob/security/advisories/GHSA-5j98-mcp5-4vw2"
}
],
"release_date": "2025-11-17T17:29:08.029000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
},
{
"category": "workaround",
"details": "To mitigate this issue, avoid using the `glob` command-line interface with the `-c` or `--cmd` option when processing filenames from untrusted sources. If programmatic use of `glob` is necessary, ensure that filenames are thoroughly sanitized before being passed to commands executed with shell interpretation enabled.",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "glob: glob: Command Injection Vulnerability via Malicious Filenames"
},
{
"cve": "CVE-2025-65945",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2025-12-04T19:01:14.733682+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418904"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in auth0/node-jws. This vulnerability allows improper signature verification via using the HS256 (Hash-based Message Authentication Code using SHA-256) algorithm under specific conditions, where applications use the jws.createVerify() function for HMAC (Keyed-Hash Message Authentication Code) algorithms and user-provided data from the JSON (JavaScript Object Notation) Web Signature protected header or payload in HMAC secret lookup routines.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-jws: auth0/node-jws: Improper signature verification in HS256 algorithm",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-65945"
},
{
"category": "external",
"summary": "RHBZ#2418904",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418904"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-65945",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-65945"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-65945",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-65945"
},
{
"category": "external",
"summary": "https://github.com/auth0/node-jws/commit/34c45b2c04434f925b638de6a061de9339c0ea2e",
"url": "https://github.com/auth0/node-jws/commit/34c45b2c04434f925b638de6a061de9339c0ea2e"
},
{
"category": "external",
"summary": "https://github.com/auth0/node-jws/security/advisories/GHSA-869p-cjfg-cm3x",
"url": "https://github.com/auth0/node-jws/security/advisories/GHSA-869p-cjfg-cm3x"
}
],
"release_date": "2025-12-04T18:45:37.517000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-jws: auth0/node-jws: Improper signature verification in HS256 algorithm"
},
{
"cve": "CVE-2025-66031",
"cwe": {
"id": "CWE-674",
"name": "Uncontrolled Recursion"
},
"discovery_date": "2025-11-26T23:01:36.363253+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2417397"
}
],
"notes": [
{
"category": "description",
"text": "An ASN.1 Denial of Service (Dos) vulnerability exists in the node-forge asn1.fromDer function within forge/lib/asn1.js. The ASN.1 DER parser implementation (_fromDer) recurses for every constructed ASN.1 value (SEQUENCE, SET, etc.) and lacks a guard limiting recursion depth. An attacker can craft a small DER blob containing a very large nesting depth of constructed TLVs which causes the Node.js V8 engine to exhaust its call stack and throw RangeError: Maximum call stack size exceeded, crashing or incapacitating the process handling the parse. This is a remote, low-cost Denial-of-Service against applications that parse untrusted ASN.1 objects.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: node-forge ASN.1 Unbounded Recursion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66031"
},
{
"category": "external",
"summary": "RHBZ#2417397",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2417397"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66031",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66031"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66031",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66031"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/commit/260425c6167a38aae038697132483b5517b26451",
"url": "https://github.com/digitalbazaar/forge/commit/260425c6167a38aae038697132483b5517b26451"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-554w-wpv2-vw27",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-554w-wpv2-vw27"
}
],
"release_date": "2025-11-26T22:23:26.013000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "node-forge: node-forge ASN.1 Unbounded Recursion"
},
{
"cve": "CVE-2025-66418",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-05T17:01:20.277857+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419455"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in urllib3 Python library that could lead to a Denial of Service condition. A remote, malicious server can exploit this flaw by responding to a client request with an HTTP message that uses an excessive number of chained compression algorithms. This unlimited decompression chain causes the client system to consume a virtually unbounded amount of CPU resources and memory. The high resource usage leads to service disruption, making the application unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3: Unbounded decompression chain leads to resource exhaustion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66418"
},
{
"category": "external",
"summary": "RHBZ#2419455",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419455"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66418",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66418"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66418",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66418"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/24d7b67eac89f94e11003424bcf0d8f7b72222a8",
"url": "https://github.com/urllib3/urllib3/commit/24d7b67eac89f94e11003424bcf0d8f7b72222a8"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-gm62-xv2j-4w53",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-gm62-xv2j-4w53"
}
],
"release_date": "2025-12-05T16:02:15.271000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3: Unbounded decompression chain leads to resource exhaustion"
},
{
"cve": "CVE-2025-66471",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2025-12-05T17:02:21.597728+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419467"
}
],
"notes": [
{
"category": "description",
"text": "A decompression handling flaw has been discovered in urllib3. When streaming a compressed response, urllib3 can perform decoding or decompression based on the HTTP Content-Encoding header (e.g., gzip, deflate, br, or zstd). The library must read compressed data from the network and decompress it until the requested chunk size is met. Any resulting decompressed data that exceeds the requested amount is held in an internal buffer for the next read operation. The decompression logic could cause urllib3 to fully decode a small amount of highly compressed data in a single operation. This can result in excessive resource consumption (high CPU usage and massive memory allocation for the decompressed data; CWE-409) on the client side, even if the application only requested a small chunk of data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3 Streaming API improperly handles highly compressed data",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66471"
},
{
"category": "external",
"summary": "RHBZ#2419467",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419467"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66471",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66471"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66471",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66471"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/c19571de34c47de3a766541b041637ba5f716ed7",
"url": "https://github.com/urllib3/urllib3/commit/c19571de34c47de3a766541b041637ba5f716ed7"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-2xpw-w6gg-jr37",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-2xpw-w6gg-jr37"
}
],
"release_date": "2025-12-05T16:06:08.531000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 Streaming API improperly handles highly compressed data"
},
{
"cve": "CVE-2025-66490",
"cwe": {
"id": "CWE-436",
"name": "Interpretation Conflict"
},
"discovery_date": "2025-12-09T01:06:39.573043+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2420301"
}
],
"notes": [
{
"category": "description",
"text": "A path normalization bypass has been discovered in Traefik. When Traefik is configured to route the requests to a backend using a matcher based on the path; if the request path contains an encoded restricted character from the following set (\u0027/\u0027, \u0027\u0027, \u0027Null\u0027, \u0027;\u0027, \u0027?\u0027, \u0027#\u0027), it\u2019s possible to target a backend, exposed using another router, by-passing the middlewares chain.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/traefik/traefik: Traefik Path Normalization Bypass in Router + Middleware Rules",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66490"
},
{
"category": "external",
"summary": "RHBZ#2420301",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2420301"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66490",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66490"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66490",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66490"
},
{
"category": "external",
"summary": "https://github.com/traefik/traefik/releases/tag/v2.11.32",
"url": "https://github.com/traefik/traefik/releases/tag/v2.11.32"
},
{
"category": "external",
"summary": "https://github.com/traefik/traefik/releases/tag/v3.6.4",
"url": "https://github.com/traefik/traefik/releases/tag/v3.6.4"
},
{
"category": "external",
"summary": "https://github.com/traefik/traefik/security/advisories/GHSA-gm3x-23wp-hc2c",
"url": "https://github.com/traefik/traefik/security/advisories/GHSA-gm3x-23wp-hc2c"
}
],
"release_date": "2025-12-09T00:35:26.530000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/traefik/traefik: Traefik Path Normalization Bypass in Router + Middleware Rules"
},
{
"cve": "CVE-2026-21441",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-01-07T23:01:59.422078+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2427726"
}
],
"notes": [
{
"category": "description",
"text": "urllib3 is an HTTP client library for Python. urllib3\u0027s streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. Starting in version 1.22 and prior to version 2.6.3, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client. Applications and libraries are affected when they stream content from untrusted sources by setting `preload_content=False` when they do not disable redirects. Users should upgrade to at least urllib3 v2.6.3, in which the library does not decode content of redirect responses when `preload_content=False`. If upgrading is not immediately possible, disable redirects by setting `redirect=False` for requests to untrusted source.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-21441"
},
{
"category": "external",
"summary": "RHBZ#2427726",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2427726"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-21441",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-21441"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-21441",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-21441"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/8864ac407bba8607950025e0979c4c69bc7abc7b",
"url": "https://github.com/urllib3/urllib3/commit/8864ac407bba8607950025e0979c4c69bc7abc7b"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99"
}
],
"release_date": "2026-01-07T22:09:01.936000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)"
},
{
"cve": "CVE-2026-22029",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"discovery_date": "2026-01-10T04:01:03.694749+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T17:06:01+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\nFor details on how to apply this update, refer to:\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2456"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:60a1c1cf2a755e24203ae76e37c3e1c08f97ae8a1905df3538b31f7d9b543f0f_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:772af8d40b674ce306850d3ecf2b70b39bdceaf9e045a2db9299c0dd8bd5e6b5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:a85afca6643f11c1e0d3976d5e679cea06d85675a5859e7e08611139f2450520_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-rhel9@sha256:aa1d96a9c1d9dbf2fe077748807de1e047a17a942a87688c269aa60537b5c6d4_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:51c627941a630d042202df9fbb0be4c289c3c2b4047092d350f564ea9815c55e_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:c4339b180ab8f5fc5ea656c6d604ad1342e329557be4fe83f7747e7b30327908_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:e2c1df1a1bc028158873b636f8b0341090b7f5211d74d0143c39b3b1f9d36472_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/code-sshd-rhel9@sha256:eaf02961dff765751f8b0f14dbc928401faa0fa60c0ee0bf340ed814509794fc_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:1a4accefcf3c48a44818e9126cdb893d469c93b2f058ce3cff6195d823d9e6c5_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:8608f41d9887eb5fea9df4b9c273fea3512c3ad492bbf8e542e6369db15be680_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:e0e7e2242127555100372896dee91fb69dd1a2fdbcce8473a1c343fc6b0b838d_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/configbump-rhel9@sha256:f818d47a01fd77940943b79133d1c7bf053359c72832e0df61397847af43f6e7_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:65b57a43496e012535680c5f6758bf4e482f0496619c1502b50cb4852723088e_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:7705755155844d580db7d2ce942bb095545f465be7a091bc14598f5ae83c0301_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:998779815c5a7888b80f635b942a7409733a839f4c7253a7b5ff920129f987ea_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/dashboard-rhel9@sha256:ba7fc29722ef40b1565978c1f578786ccb65752bc82f50b794f3c5ab0c789d2a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-operator-bundle@sha256:c72b135ccb51663313a9ed55dc5d46af1fbc2476c0243a523ce531262cb82acf_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:8935901859ad9b07689de3d9ea602adf21bcbd2105cedba83503296230b4adad_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:b8ae475ea425efb5d30d2c23cd789ee993ee7e5026ed5c892106512351aee416_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:bc60ec1ad66c342f632d32a64012cae3c4426f54bf08578d60d25a68c31b02cd_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/devspaces-rhel9-operator@sha256:fd35a91b2542252bcd695cd7d02727e8a1c593f1c9a9ec88da92d5d797b17bc5_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:0f87d0637586a8d1aedb84b266f9781af80f63c1342b3951559aa18343825993_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:2efc89cc392a8fdb0d2a493aa7cb0d5a6e3cc5efe19054181befe452f293ea59_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:43368b4815eea7a9b1b6a33b061af43f521810efc1c102df0426796e431d0add_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/imagepuller-rhel9@sha256:454566dfa4c035a67f5e4d5ed19289d1c97f2546ee06ef587aff36b3f2cdadee_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:4e83ac026653a09abe7f783844617502298f45d4f12cb46445ad8d27722eed42_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:55e7a74a6e435a77cbdeee2d8d333f830d47c52449a27770310f010c4c4c6dd1_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:6a70faa18a51c05328cba689acd2cef1f248ba4d9f78802f3bdc4aff4183d521_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/jetbrains-ide-rhel9@sha256:819f3c80c8241446239d783d01e9a65e3448427a683dbaa5b91ba859329cdbd2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:5295d0aa61988b2722c9171a0c0f7a61e749479979746355861d0c8b6c2b58a8_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:65d7c3ada0b4c4fdfb576f5fbbc8b75264c26a4baabdbbaf2197e05186b6bdd1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:be63fdd87b11d550dbd8cef2b74cbf843ed778365d877684e8525c9b017f3a50_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/machineexec-rhel9@sha256:c06a36be7e7392da6fcdbdbf79bf704852be05ac7bc094cc63355180b05ed9ba_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:024f64869d4813d8b0938f8cad9a0bf4e4e924a5082ac2ee3ea0bc6ba51edfe5_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:b709ca92a102d77f8a090e1503877e12dc24bbd6e91c0205d8402ad3a9c365e9_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:de30783c5550d7dc3ebd71507ce41e4a6f6209663299453aaf35b73f17d161d8_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/openvsx-rhel9@sha256:ffe5740d684ac4a1b6c440bb4d2ca3ec20d71c008e65fa73f5143c43a7bda339_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:4c5121d8f31d840f55e575bf266f2ca179a81f05dd49fbd63a4ee7e3f8a97001_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:870546a61219ce727b59586e31edb8cbc653ce72264b23a89a916d04a0627fe0_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:bc68ad64665acf9c4807bb4f4ae920da7c2a82716c8bc151bd269a4f234fc69e_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/pluginregistry-rhel9@sha256:fd2925764c63cf6ee7cb92dab59cc8f6f696f628e4676b37297dab95aa0187f1_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:1a1e372643b7eeabd4acda8b440173ef83087b453a89f554b4c1c006c7a796c8_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:377caaaff59c843357600332c63278fa019eacec2a60567725dd149e98d6d3fb_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:4983729652072e885f84298af878c72f757bfb1e820dbb9ee4ad2494a6bd0f48_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/server-rhel9@sha256:60460d63a971f7f129f97f1d73f8f577565d82a5f8d476e19b249b6e543dee0b_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:0f0dbdab221c9ea50603b8a48ed61b2e322dc4dc03028611bcb120ea7bc32a81_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:3f001b01ff331475bc37556515ecab11699f54560d33caa8f45e84cb8ff91410_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:8d7f9a00fd74530f30b15e62db3d3c7096a04a6e68e28ca1ba04eae538034f93_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/traefik-rhel9@sha256:e8da554ed086a4ac5fcbe6ad7797f1f36c965aae3bbb75c2fd446b9dfa1d5592_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:7335ec3e28a4f9e88f03df6ad4b245f6ffc3e0b79aa1c5072f5cf27bbd0dbb17_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:a05ebcc4507fd1c7d47254f6dc9b94a7fd1c0868f17e51cfe6e310f763e9baba_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:b4770ac4b68c340a5efa523751761b725ddfb38d25cf129e2a978f6e3774e7c2_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel10@sha256:cc2df284c22698278472a3cb0b748b797097bacf72e24a13f98c8cd9643452d1_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:10da53d4e0216c034f57c990d1569c25558f68e65b7fc07e18b3e6be89490162_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:276782b304e7f31d1e846f6acc5caeda45055adb8630d1605ad4ec55431ef6ec_s390x",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:b998742f17f56c16942062d11d4f7f62181703f4be20db6fa807a35d016cd7da_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-base-rhel9@sha256:cc54713d9a3f0a44403d9c8d13ae1f9179e2af96b144366b6ae7e753dab4ce70_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:2966ebf5a1744c8bebae6c03efc4685aa8db9de84138fe95a63ad721a42ae06a_amd64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:b520d66efc293127d9f0478eff66e2ddc6830f3b7d6ced0abe931792022a3f70_ppc64le",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:da6e70b4d7cf45da59e36c7741f532d9bfed498a00082560a34491419016c437_arm64",
"Red Hat OpenShift Dev Spaces (RHOSDS) 3.26:registry.redhat.io/devspaces/udi-rhel9@sha256:f592ddd74feb260b51087e6555b6e7e42e61dc12a87475e3aa3b7729e33fcf93_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
}
]
}
RHSA-2026:2500
Vulnerability from csaf_redhat - Published: 2026-02-11 05:02 - Updated: 2026-06-14 15:11A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x | — |
Workaround
|
A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x | — |
Workaround
|
A flaw was found in urllib3 Python library that could lead to a Denial of Service condition. A remote, malicious server can exploit this flaw by responding to a client request with an HTTP message that uses an excessive number of chained compression algorithms. This unlimited decompression chain causes the client system to consume a virtually unbounded amount of CPU resources and memory. The high resource usage leads to service disruption, making the application unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x | — |
A decompression handling flaw has been discovered in urllib3. When streaming a compressed response, urllib3 can perform decoding or decompression based on the HTTP Content-Encoding header (e.g., gzip, deflate, br, or zstd). The library must read compressed data from the network and decompress it until the requested chunk size is met. Any resulting decompressed data that exceeds the requested amount is held in an internal buffer for the next read operation. The decompression logic could cause urllib3 to fully decode a small amount of highly compressed data in a single operation. This can result in excessive resource consumption (high CPU usage and massive memory allocation for the decompressed data; CWE-409) on the client side, even if the application only requested a small chunk of data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x | — |
Workaround
|
A flaw was found in Storybook, a tool for building user interface components. This vulnerability can lead to the unintended exposure of sensitive information. When Storybook is built in a directory containing a `.env` file and then published online, environment variables from that file may be included in the publicly accessible build artifacts. This allows anyone with access to the published Storybook to view these potentially confidential variables.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x | — |
urllib3 is an HTTP client library for Python. urllib3's streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. Starting in version 1.22 and prior to version 2.6.3, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client. Applications and libraries are affected when they stream content from untrusted sources by setting `preload_content=False` when they do not disable redirects. Users should upgrade to at least urllib3 v2.6.3, in which the library does not decode content of redirect responses when `preload_content=False`. If upgrading is not immediately possible, disable redirects by setting `redirect=False` for requests to untrusted source.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat multicluster global hub v1.4.4 general availability release images, which provide security fixes, bug fixes, and updated container images.\n\nRed Hat Product Security has rated this update as having a security impact of Important. \nA Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE links in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat multicluster global hub is a set of components that enable you to import one or more hub clusters and manage them from a single hub cluster.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2500",
"url": "https://access.redhat.com/errata/RHSA-2026:2500"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-12816",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66418",
"url": "https://access.redhat.com/security/cve/CVE-2025-66418"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66471",
"url": "https://access.redhat.com/security/cve/CVE-2025-66471"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-68429",
"url": "https://access.redhat.com/security/cve/CVE-2025-68429"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-21441",
"url": "https://access.redhat.com/security/cve/CVE-2026-21441"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2500.json"
}
],
"title": "Red Hat Security Advisory: Red Hat multicluster global hub 1.4.4 security update",
"tracking": {
"current_release_date": "2026-06-14T15:11:33+00:00",
"generator": {
"date": "2026-06-14T15:11:33+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:2500",
"initial_release_date": "2026-02-11T05:02:44+00:00",
"revision_history": [
{
"date": "2026-02-11T05:02:44+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-11T05:02:55+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:11:33+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Multicluster Global Hub 1.4.5",
"product": {
"name": "Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:multicluster_globalhub:1.4::el9"
}
}
}
],
"category": "product_family",
"name": "Multicluster Global Hub"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770126537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3Abca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770281189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3Aca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770280963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-operator-bundle@sha256%3Af8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770362687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770281560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3Ac48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1769643304"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770126537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3Ac50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770281189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770280963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770281560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1769643304"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770126537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770281189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770280963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3Ae8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770281560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1769643304"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3Ac7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770126537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770281189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3Aeed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770280963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1770281560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3Ad6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub\u0026tag=1769643304"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64 as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x as a component of Multicluster Global Hub 1.4.5",
"product_id": "Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.4.5"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-12816",
"cwe": {
"id": "CWE-179",
"name": "Incorrect Behavior Order: Early Validation"
},
"discovery_date": "2025-11-25T20:01:05.875196+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2417097"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products due to an interpretation conflict in the node-forge library. An unauthenticated attacker could exploit this flaw by crafting malicious ASN.1 structures, leading to a bypass of cryptographic verifications and security decisions in affected applications. This impacts various Red Hat products that utilize node-forge for cryptographic operations.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "RHBZ#2417097",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2417097"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-12816",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-12816"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge",
"url": "https://github.com/digitalbazaar/forge"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/pull/1124",
"url": "https://github.com/digitalbazaar/forge/pull/1124"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq"
},
{
"category": "external",
"summary": "https://kb.cert.org/vuls/id/521113",
"url": "https://kb.cert.org/vuls/id/521113"
},
{
"category": "external",
"summary": "https://www.npmjs.com/package/node-forge",
"url": "https://www.npmjs.com/package/node-forge"
}
],
"release_date": "2025-11-25T19:15:50.243000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T05:02:44+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2500"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T05:02:44+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2500"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-66418",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-05T17:01:20.277857+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419455"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in urllib3 Python library that could lead to a Denial of Service condition. A remote, malicious server can exploit this flaw by responding to a client request with an HTTP message that uses an excessive number of chained compression algorithms. This unlimited decompression chain causes the client system to consume a virtually unbounded amount of CPU resources and memory. The high resource usage leads to service disruption, making the application unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3: Unbounded decompression chain leads to resource exhaustion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66418"
},
{
"category": "external",
"summary": "RHBZ#2419455",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419455"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66418",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66418"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66418",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66418"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/24d7b67eac89f94e11003424bcf0d8f7b72222a8",
"url": "https://github.com/urllib3/urllib3/commit/24d7b67eac89f94e11003424bcf0d8f7b72222a8"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-gm62-xv2j-4w53",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-gm62-xv2j-4w53"
}
],
"release_date": "2025-12-05T16:02:15.271000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T05:02:44+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2500"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3: Unbounded decompression chain leads to resource exhaustion"
},
{
"cve": "CVE-2025-66471",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2025-12-05T17:02:21.597728+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419467"
}
],
"notes": [
{
"category": "description",
"text": "A decompression handling flaw has been discovered in urllib3. When streaming a compressed response, urllib3 can perform decoding or decompression based on the HTTP Content-Encoding header (e.g., gzip, deflate, br, or zstd). The library must read compressed data from the network and decompress it until the requested chunk size is met. Any resulting decompressed data that exceeds the requested amount is held in an internal buffer for the next read operation. The decompression logic could cause urllib3 to fully decode a small amount of highly compressed data in a single operation. This can result in excessive resource consumption (high CPU usage and massive memory allocation for the decompressed data; CWE-409) on the client side, even if the application only requested a small chunk of data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3 Streaming API improperly handles highly compressed data",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66471"
},
{
"category": "external",
"summary": "RHBZ#2419467",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419467"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66471",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66471"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66471",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66471"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/c19571de34c47de3a766541b041637ba5f716ed7",
"url": "https://github.com/urllib3/urllib3/commit/c19571de34c47de3a766541b041637ba5f716ed7"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-2xpw-w6gg-jr37",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-2xpw-w6gg-jr37"
}
],
"release_date": "2025-12-05T16:06:08.531000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T05:02:44+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2500"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 Streaming API improperly handles highly compressed data"
},
{
"cve": "CVE-2025-68429",
"cwe": {
"id": "CWE-538",
"name": "Insertion of Sensitive Information into Externally-Accessible File or Directory"
},
"discovery_date": "2025-12-17T23:03:29.948214+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2423460"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Storybook, a tool for building user interface components. This vulnerability can lead to the unintended exposure of sensitive information. When Storybook is built in a directory containing a `.env` file and then published online, environment variables from that file may be included in the publicly accessible build artifacts. This allows anyone with access to the published Storybook to view these potentially confidential variables.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Storybook: Storybook: Information disclosure via unexpected bundling of environment variables",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat as it can lead to the unintended exposure of sensitive environment variables. This occurs when a Storybook project is built using the `storybook build` command in a directory containing a `.env` file, and the resulting bundle is subsequently published to a web-accessible location. Storybook instances built without `.env` files or run in development mode (`storybook dev`) are not affected.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68429"
},
{
"category": "external",
"summary": "RHBZ#2423460",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2423460"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68429",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68429"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68429",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68429"
},
{
"category": "external",
"summary": "https://github.com/storybookjs/storybook/security/advisories/GHSA-8452-54wp-rmv6",
"url": "https://github.com/storybookjs/storybook/security/advisories/GHSA-8452-54wp-rmv6"
},
{
"category": "external",
"summary": "https://storybook.js.org/blog/security-advisory",
"url": "https://storybook.js.org/blog/security-advisory"
}
],
"release_date": "2025-12-17T22:26:55.732000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T05:02:44+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2500"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Storybook: Storybook: Information disclosure via unexpected bundling of environment variables"
},
{
"cve": "CVE-2026-21441",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-01-07T23:01:59.422078+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2427726"
}
],
"notes": [
{
"category": "description",
"text": "urllib3 is an HTTP client library for Python. urllib3\u0027s streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. Starting in version 1.22 and prior to version 2.6.3, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client. Applications and libraries are affected when they stream content from untrusted sources by setting `preload_content=False` when they do not disable redirects. Users should upgrade to at least urllib3 v2.6.3, in which the library does not decode content of redirect responses when `preload_content=False`. If upgrading is not immediately possible, disable redirects by setting `redirect=False` for requests to untrusted source.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
],
"known_not_affected": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-21441"
},
{
"category": "external",
"summary": "RHBZ#2427726",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2427726"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-21441",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-21441"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-21441",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-21441"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/8864ac407bba8607950025e0979c4c69bc7abc7b",
"url": "https://github.com/urllib3/urllib3/commit/8864ac407bba8607950025e0979c4c69bc7abc7b"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99"
}
],
"release_date": "2026-01-07T22:09:01.936000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T05:02:44+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.13/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2500"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:237007606257d24c4dd11ba15b48a4ab4a385d7c6b259f344ac40427d965ccb7_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:6bce9f138d78cd05a30d427afbd6fec50211ae3cba1174f796ec618c8862d8c7_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:bca34c5ced99ce0605bb8ff276e99030c480adf8842f038876095669a0d46f7e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:c50c3087b6579a76a07038c59dd685e767ba633428d45a057247054cd5d15e19_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:2630957b6783b2bf14940c9a153f25e68b2f4f2cdd17f2ed3a23c284b8d71aca_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:29f466fffff1ebdb03c69b57e588d1359324280c82c67788195048aed9e022f5_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:945a8497173aaba167a71fb4a393714905dd2d00ede0a4eb09c00c4c59727414_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:c7cdfe50df5e73358f348f0a9b8f7b35c6a5f4298d4bb6bedae7c7b9da882108_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:265f3e651d16fb5416604e7b1dad78d1214f71001f6ac3a33b081d78116f616c_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:64b490a5a70c31874ba08fbe3ac00f8be2ad74198692432a8ee4762b25e40294_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:ca7cc3adb829b0e1526c8dd4494747ed3f0b38dabdc1d9e5b67c967e4db3fb09_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:eed6a559cea86c3790258ab4d43b03618273cd59c4c2c6d484365a6d5c75e458_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:f8f73e9cadc8c27f13fd947422aa74908f0cc15eb4a340bc110db757a43c6c6e_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c24477a58cd87093ac8d47ae89170cc9df4c317f85e86a0a638e2cb62c96644_s390x",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:90aee1f2623f5fb562d1badfbaa9cd993d67642ef3fe6abe523335c6e13df641_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:c48153736d4573aa3cb6f2428fd10d1c08643cb69bc93d42512f561739243bed_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:d6773be40f1cac558fe86a9dd564ba3f2570397c0dbe55e037bf05965987b43c_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:5b68ff2c13f4b8670d68ecf73607ea175b168d8eab620c8c666244d3a4d0b209_amd64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:8e05f5585404218773a63e7bbc4c93c18cebec7cd963d45fa28215edffca8448_arm64",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:9294e8c4a557d7c03108170a1406ca27e390c77bb71711de54567fa4830f91e7_ppc64le",
"Multicluster Global Hub 1.4.5:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:e8e63947b14543af7407ec3b4639df3f7fe52198b771473670309c00d6ca8733_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)"
}
]
}
RHSA-2026:2568
Vulnerability from csaf_redhat - Published: 2026-02-11 15:09 - Updated: 2026-06-14 15:11A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64 | — |
Workaround
|
A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64 | — |
Workaround
|
A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64 | — |
Workaround
|
An ASN.1 Denial of Service (Dos) vulnerability exists in the node-forge asn1.fromDer function within forge/lib/asn1.js. The ASN.1 DER parser implementation (_fromDer) recurses for every constructed ASN.1 value (SEQUENCE, SET, etc.) and lacks a guard limiting recursion depth. An attacker can craft a small DER blob containing a very large nesting depth of constructed TLVs which causes the Node.js V8 engine to exhaust its call stack and throw RangeError: Maximum call stack size exceeded, crashing or incapacitating the process handling the parse. This is a remote, low-cost Denial-of-Service against applications that parse untrusted ASN.1 objects.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64 | — |
Workaround
|
A flaw was found in Fulcio, a free-to-use certificate authority. This vulnerability allows a denial of service (DoS) due to excessive memory allocation when processing a malicious OpenID Connect (OIDC) identity token containing numerous period characters.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64 | — |
A flaw was found in Sigstore Timestamp Authority. This vulnerability allows a denial of service via excessive memory allocation when processing a specially crafted Object Identifier or Content-Type header.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64 | — |
A path traversal vulnerability has been discovered in the jdPDF npm library. User control of the first argument of the loadFile method in the node.js build allows local file inclusion/path traversal. If given the possibility to pass unsanitized paths to the loadFile method, a user can retrieve file contents of arbitrary files in the local file system the node process is running in. The file contents are included verbatim in the generated PDFs. Only the node.js builds of the library are affected, namely the `dist/jspdf.node.js` and `dist/jspdf.node.min.js`.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64 | — |
Workaround
|
A flaw was found in GnuPG. An attacker can provide crafted input to the `armor_filter` function, which incorrectly increments an index variable, leading to an out-of-bounds write. This memory corruption vulnerability may allow for information disclosure and could potentially lead to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x | — |
Workaround
|
A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Updated images are now available for Red Hat Advanced Cluster Security\n(RHACS), which typically include new features, bug fixes, and/or\nsecurity patches.",
"title": "Topic"
},
{
"category": "general",
"text": "See the release notes (link in the references section) for a\ndescription of the fixes and enhancements in this particular release.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2568",
"url": "https://access.redhat.com/errata/RHSA-2026:2568"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-12816",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-58183",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66031",
"url": "https://access.redhat.com/security/cve/CVE-2025-66031"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66506",
"url": "https://access.redhat.com/security/cve/CVE-2025-66506"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66564",
"url": "https://access.redhat.com/security/cve/CVE-2025-66564"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-68428",
"url": "https://access.redhat.com/security/cve/CVE-2025-68428"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-68973",
"url": "https://access.redhat.com/security/cve/CVE-2025-68973"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.9/html-single/release_notes/index#about-this-release-493_release-notes-49",
"url": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.9/html-single/release_notes/index#about-this-release-493_release-notes-49"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2568.json"
}
],
"title": "Red Hat Security Advisory: RHACS 4.9.3 security and bug fix update",
"tracking": {
"current_release_date": "2026-06-14T15:11:40+00:00",
"generator": {
"date": "2026-06-14T15:11:40+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:2568",
"initial_release_date": "2026-02-11T15:09:41+00:00",
"revision_history": [
{
"date": "2026-02-11T15:09:41+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-11T15:09:46+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:11:40+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product": {
"name": "Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:advanced_cluster_security:4.9::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Advanced Cluster Security for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3Afdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3Af5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769100379"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-operator-bundle@sha256%3A4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Ab604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Aeffcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Ab42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3Ac399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Abff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Af8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769100379"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Afe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3Ab88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769100379"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Ad09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3Ae85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Ab4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3Af4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769100379"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Adea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3Ab6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Af630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Ac1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769577723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3Ab57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Aec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770074713"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-12816",
"cwe": {
"id": "CWE-179",
"name": "Incorrect Behavior Order: Early Validation"
},
"discovery_date": "2025-11-25T20:01:05.875196+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2417097"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products due to an interpretation conflict in the node-forge library. An unauthenticated attacker could exploit this flaw by crafting malicious ASN.1 structures, leading to a bypass of cryptographic verifications and security decisions in affected applications. This impacts various Red Hat products that utilize node-forge for cryptographic operations.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "RHBZ#2417097",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2417097"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-12816",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-12816"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge",
"url": "https://github.com/digitalbazaar/forge"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/pull/1124",
"url": "https://github.com/digitalbazaar/forge/pull/1124"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq"
},
{
"category": "external",
"summary": "https://kb.cert.org/vuls/id/521113",
"url": "https://kb.cert.org/vuls/id/521113"
},
{
"category": "external",
"summary": "https://www.npmjs.com/package/node-forge",
"url": "https://www.npmjs.com/package/node-forge"
}
],
"release_date": "2025-11-25T19:15:50.243000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T15:09:41+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2568"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T15:09:41+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2568"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-58183",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-29T23:01:50.573951+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2407258"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to be able to process a specially crafted GNU tar pax 1.0 archive with the application using the archive/tar package. Additionally, this issue can cause the Go application to allocate a large amount of memory, eventually leading to an out-of-memory condition and resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "RHBZ#2407258",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2407258"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-58183",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58183"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://go.dev/cl/709861",
"url": "https://go.dev/cl/709861"
},
{
"category": "external",
"summary": "https://go.dev/issue/75677",
"url": "https://go.dev/issue/75677"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI",
"url": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4014",
"url": "https://pkg.go.dev/vuln/GO-2025-4014"
}
],
"release_date": "2025-10-29T22:10:14.376000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T15:09:41+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2568"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map"
},
{
"cve": "CVE-2025-66031",
"cwe": {
"id": "CWE-674",
"name": "Uncontrolled Recursion"
},
"discovery_date": "2025-11-26T23:01:36.363253+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2417397"
}
],
"notes": [
{
"category": "description",
"text": "An ASN.1 Denial of Service (Dos) vulnerability exists in the node-forge asn1.fromDer function within forge/lib/asn1.js. The ASN.1 DER parser implementation (_fromDer) recurses for every constructed ASN.1 value (SEQUENCE, SET, etc.) and lacks a guard limiting recursion depth. An attacker can craft a small DER blob containing a very large nesting depth of constructed TLVs which causes the Node.js V8 engine to exhaust its call stack and throw RangeError: Maximum call stack size exceeded, crashing or incapacitating the process handling the parse. This is a remote, low-cost Denial-of-Service against applications that parse untrusted ASN.1 objects.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: node-forge ASN.1 Unbounded Recursion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66031"
},
{
"category": "external",
"summary": "RHBZ#2417397",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2417397"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66031",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66031"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66031",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66031"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/commit/260425c6167a38aae038697132483b5517b26451",
"url": "https://github.com/digitalbazaar/forge/commit/260425c6167a38aae038697132483b5517b26451"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-554w-wpv2-vw27",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-554w-wpv2-vw27"
}
],
"release_date": "2025-11-26T22:23:26.013000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T15:09:41+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2568"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "node-forge: node-forge ASN.1 Unbounded Recursion"
},
{
"cve": "CVE-2025-66506",
"cwe": {
"id": "CWE-405",
"name": "Asymmetric Resource Consumption (Amplification)"
},
"discovery_date": "2025-12-04T23:01:20.507333+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419056"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Fulcio, a free-to-use certificate authority. This vulnerability allows a denial of service (DoS) due to excessive memory allocation when processing a malicious OpenID Connect (OIDC) identity token containing numerous period characters.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/sigstore/fulcio: Fulcio: Denial of Service via crafted OpenID Connect (OIDC) token",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat as Fulcio, a certificate authority used for issuing code signing certificates, is susceptible to a denial of service when processing a specially crafted OpenID Connect (OIDC) token. This could lead to resource exhaustion and service unavailability in affected Red Hat products that utilize Fulcio.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66506"
},
{
"category": "external",
"summary": "RHBZ#2419056",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419056"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66506",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66506"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66506",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66506"
},
{
"category": "external",
"summary": "https://github.com/sigstore/fulcio/commit/765a0e57608b9ef390e1eeeea8595b9054c63a5a",
"url": "https://github.com/sigstore/fulcio/commit/765a0e57608b9ef390e1eeeea8595b9054c63a5a"
},
{
"category": "external",
"summary": "https://github.com/sigstore/fulcio/security/advisories/GHSA-f83f-xpx7-ffpw",
"url": "https://github.com/sigstore/fulcio/security/advisories/GHSA-f83f-xpx7-ffpw"
}
],
"release_date": "2025-12-04T22:04:41.637000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T15:09:41+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2568"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/sigstore/fulcio: Fulcio: Denial of Service via crafted OpenID Connect (OIDC) token"
},
{
"cve": "CVE-2025-66564",
"cwe": {
"id": "CWE-405",
"name": "Asymmetric Resource Consumption (Amplification)"
},
"discovery_date": "2025-12-04T23:01:11.786030+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419054"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Sigstore Timestamp Authority. This vulnerability allows a denial of service via excessive memory allocation when processing a specially crafted Object Identifier or Content-Type header.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/sigstore/timestamp-authority: Sigstore Timestamp Authority: Denial of Service via excessive OID or Content-Type header parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. The Sigstore Timestamp Authority, a service for issuing RFC 3161 timestamps, is prone to excessive memory allocation. This occurs when processing untrusted OID payloads with many period characters or malformed Content-Type headers. An unauthenticated attacker could exploit this flaw to trigger a denial of service in affected Red Hat products that utilize this component.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66564"
},
{
"category": "external",
"summary": "RHBZ#2419054",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419054"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66564",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66564"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66564",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66564"
},
{
"category": "external",
"summary": "https://github.com/sigstore/timestamp-authority/commit/0cae34e197d685a14904e0bad135b89d13b69421",
"url": "https://github.com/sigstore/timestamp-authority/commit/0cae34e197d685a14904e0bad135b89d13b69421"
},
{
"category": "external",
"summary": "https://github.com/sigstore/timestamp-authority/security/advisories/GHSA-4qg8-fj49-pxjh",
"url": "https://github.com/sigstore/timestamp-authority/security/advisories/GHSA-4qg8-fj49-pxjh"
}
],
"release_date": "2025-12-04T22:37:13.307000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T15:09:41+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2568"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/sigstore/timestamp-authority: Sigstore Timestamp Authority: Denial of Service via excessive OID or Content-Type header parsing"
},
{
"cve": "CVE-2025-68428",
"cwe": {
"id": "CWE-73",
"name": "External Control of File Name or Path"
},
"discovery_date": "2026-01-05T22:01:15.703824+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2427236"
}
],
"notes": [
{
"category": "description",
"text": "A path traversal vulnerability has been discovered in the jdPDF npm library. User control of the first argument of the loadFile method in the node.js build allows local file inclusion/path traversal. If given the possibility to pass unsanitized paths to the loadFile method, a user can retrieve file contents of arbitrary files in the local file system the node process is running in. The file contents are included verbatim in the generated PDFs. Only the node.js builds of the library are affected, namely the `dist/jspdf.node.js` and `dist/jspdf.node.min.js`.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "jspdf: jsPDF Local File Inclusion/Path Traversal vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68428"
},
{
"category": "external",
"summary": "RHBZ#2427236",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2427236"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68428",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68428"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68428",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68428"
},
{
"category": "external",
"summary": "https://github.com/parallax/jsPDF/commit/a688c8f479929b24a6543b1fa2d6364abb03066d",
"url": "https://github.com/parallax/jsPDF/commit/a688c8f479929b24a6543b1fa2d6364abb03066d"
},
{
"category": "external",
"summary": "https://github.com/parallax/jsPDF/releases/tag/v4.0.0",
"url": "https://github.com/parallax/jsPDF/releases/tag/v4.0.0"
},
{
"category": "external",
"summary": "https://github.com/parallax/jsPDF/security/advisories/GHSA-f8cm-6447-x5h2",
"url": "https://github.com/parallax/jsPDF/security/advisories/GHSA-f8cm-6447-x5h2"
}
],
"release_date": "2026-01-05T21:43:55.169000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T15:09:41+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2568"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.6,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "jspdf: jsPDF Local File Inclusion/Path Traversal vulnerability"
},
{
"cve": "CVE-2025-68973",
"cwe": {
"id": "CWE-675",
"name": "Multiple Operations on Resource in Single-Operation Context"
},
"discovery_date": "2025-12-28T17:00:44.161022+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425966"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in GnuPG. An attacker can provide crafted input to the `armor_filter` function, which incorrectly increments an index variable, leading to an out-of-bounds write. This memory corruption vulnerability may allow for information disclosure and could potentially lead to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "GnuPG: GnuPG: Information disclosure and potential arbitrary code execution via out-of-bounds write",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. The flaw in GnuPG\u0027s `armor_filter` function allows an attacker with local access to provide crafted input, potentially leading to information disclosure and arbitrary code execution due to an out-of-bounds write. Exploitation requires high attack complexity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68973"
},
{
"category": "external",
"summary": "RHBZ#2425966",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425966"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68973",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68973"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68973",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68973"
},
{
"category": "external",
"summary": "https://github.com/gpg/gnupg/blob/ff30683418695f5d2cc9e6cf8c9418e09378ebe4/g10/armor.c#L1305-L1306",
"url": "https://github.com/gpg/gnupg/blob/ff30683418695f5d2cc9e6cf8c9418e09378ebe4/g10/armor.c#L1305-L1306"
},
{
"category": "external",
"summary": "https://github.com/gpg/gnupg/commit/115d138ba599328005c5321c0ef9f00355838ca9",
"url": "https://github.com/gpg/gnupg/commit/115d138ba599328005c5321c0ef9f00355838ca9"
},
{
"category": "external",
"summary": "https://gpg.fail/memcpy",
"url": "https://gpg.fail/memcpy"
},
{
"category": "external",
"summary": "https://news.ycombinator.com/item?id=46403200",
"url": "https://news.ycombinator.com/item?id=46403200"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2025/12/28/5",
"url": "https://www.openwall.com/lists/oss-security/2025/12/28/5"
}
],
"release_date": "2025-12-28T16:19:11.019000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T15:09:41+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2568"
},
{
"category": "workaround",
"details": "To mitigate this issue, users should avoid processing untrusted or unverified input with GnuPG. Exercise caution when handling GnuPG-encrypted or signed data from unknown or suspicious sources, as specially crafted input could trigger the vulnerability. This operational control reduces the attack surface by limiting exposure to malicious data.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "GnuPG: GnuPG: Information disclosure and potential arbitrary code execution via out-of-bounds write"
},
{
"cve": "CVE-2026-22029",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"discovery_date": "2026-01-10T04:01:03.694749+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T15:09:41+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2568"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:883829bc4863879bfa6f1a73b18a7dca659a699664a3851f24e2b08cc15cf0e0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:954a69b7fc21665057ef4de00d5a3fe1907cb6b3a02faa922d61ba9b9561ff85_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:f4141ca6948e53983b0aef57965bed68be81db2ef84ca4fca597e3f5655ecd7d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:fdc9b12b9ee45dd85e277f21f5219c8900b7c0a684090937a9a4cf69a3d22061_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:6ddaad689e2065044d8c13fed306f0d6051199b19689b12c4d60c785243cb3ee_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:709d85ccdd2c9ddde6c152a44356800cca972d655dc310f7fdf4307c52f34a73_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:9bdd97f707c4ce105262bd4891d9f644f4ede21005409251051e670045e61e37_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:f5bbdaab3899347f0199211c97f3643bc0aed644d7f2117b22bce1bb61ea7838_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:25bb4a371c5656d01a53060df46b7fbb5a287fe843c08581be69fb42ff5ec5dd_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:68ec422055d5c2bd25e891853a5871e57f2c3a175ccea404be52a84c5b470e8f_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:896bba113fa4ba5eab3bc944d58f7492b55945e2802845edee9362b0682ab419_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:dea9e54e863bb2694aec735efa084c60f0083f02f749388aaf872067629a4589_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:4293e169ce795c57143e5a37e0b909ba19d702d26830c749f960ce4ec77c0897_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:2d7d654755857e5a164827f2bbc022d1c23f7229b4164faa5c61e852c1706800_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:817f1ffbf4d8917fdb02f33a5ffd72e16f73952897356cb4d21f1daf1b6e3d88_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fd9a15845c8e2b663c502a15efb17f2bc3b3555eb513a7972ffe71f37654b9e_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:b6764d281ee6620dbe9b825dc0d0f5e03bc1b2c1a440ccd28a159eb8cd3e2166_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:52db816d2bddde50796a4a5ceb22a9a54fc72bd3b2c1564e7515d0cda2f6c0c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:7a49b9e8ea59229abd9c73c7c0c89ca4e6ed4b30ff8c3b5867c7aaf861658bf2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b604aabc30af38b467a1679352a1bf76297520d028ddde8555bcc920887641b3_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d09d170ce80d0e59bb67f64a31b26fef702d3d5d73b50d0475f92268f9d6f094_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:05ddda7a4ba49a18e5498d9ff8c3565f7a4abc96c985feec10887bb0c1b8aec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:552b628dee91632aeae32b09add80d1293ff6210585ec1469e1181660ee626e9_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b42e39f651d32f6f3d52496904a6837571b41bd4f104164f7c7e53f7866f2e74_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f630b49b63c4c3e5a06f9fb96c16858af84baf0988386c11ed3f28a4a1d596b6_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:22b88e02a978be77ef7c104bb7ee7844630413b4bfd307ed2028ac7749ec4eaf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4138b33646b5bb576c0f20fb2b436e8f4afb214201fb0c4e0223cdaf22bdb98d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:c399ab5c8f1c0702788c49bd02cdc3495e44ae777c5e89771798eff2ac32c96e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e85ca69d5d3e49fbd27f6f933460ec8c91ff5a02db9fcffbc6df56ab8365e05c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5f83884b0a2b48f34e14b949f43e68ad4b99cb8d228bec74b5126b89cc007808_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:60ec86b8361ab04a7ab167079e7ba62ca091596ce21bf62904d358b9e23d7576_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:effcbf4f105173a4725b450706db3297b77bcfd4a9d7b0b9f7b2f8a88436a50c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:fe930290f16d00ea10ed532739267ea1e5e2d71981405462f7ccdfb0e687dd5a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:0456c738acfa45201b2575099cb9347e653eb236b8dfaae076c79dcacbfcbf05_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5bc76aef177b4d7d13712e680a6a89771982b550316e44053c1f46fd053506da_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bff622e8cdc9fa5f697816e1f8aaa86a1dd12bf018906257403907f8896dc649_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fb03f17968db99962f6cea11dd288fd0101bc9b8168cd296c148b451dab6d7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4a35cd2f60df70215a8344cbb2ba17c36856a0e59dbf0b4e26c63834968c791c_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:b4232e6ba47868e601e14b219730d272ca953065c7bd998ed5266238d13eb71a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:ec5aa99bc9c1fdc57be287f9402cbcdd31274eeac7bc158615c0c61a9fa7f3fe_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f8412ae382a83aa6be858ead781b6303cfa39c2574800ca181d62355c023ef6b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:0f5f88357d4d95c1ffa397cbc346bf9f5dc2db8f4e5579abad88c0ad2963d162_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5c3f41025d90f9288ddc2e6f749ecf9765e6489184acd7532d0d2f3e476473f3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b57d042b045f2600dbd6e446c0c651b1ae0a85158077bd52cd0b76616bb95230_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:b88a4d77f26b9f230d8abbc06aa0a3a1cde6df903a6ef797ee18efb81e2674ac_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
}
]
}
RHSA-2026:2672
Vulnerability from csaf_redhat - Published: 2026-02-18 08:43 - Updated: 2026-06-14 03:13A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le | — |
Workaround
|
A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le | — |
Workaround
|
A denial-of-service vulnerability in github.com/sirupsen/logrus occurs when Entry.Writer() processes a single-line payload larger than 64KB with no newline characters. Due to a limitation in Go’s internal bufio.Scanner, the read operation fails with a “token too long” error, causing the underlying writer pipe to close. In affected versions, this leaves the Writer interface unusable and can disrupt logging functionality, potentially degrading application availability.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.17.49 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.17.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.17.49. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:2670\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.17/html/release_notes/\n\nSecurity Fix(es):\n\n* qs: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n* lodash: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)\n* github.com/sirupsen/logrus: github.com/sirupsen/logrus: Denial-of-Service due to large single-line payload (CVE-2025-65637)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.17 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.17/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2672",
"url": "https://access.redhat.com/errata/RHSA-2026:2672"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13465",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-65637",
"url": "https://access.redhat.com/security/cve/CVE-2025-65637"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2672.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.17.49 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-14T03:13:00+00:00",
"generator": {
"date": "2026-06-14T03:13:00+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:2672",
"initial_release_date": "2026-02-18T08:43:43+00:00",
"revision_history": [
{
"date": "2026-02-18T08:43:43+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-18T08:44:35+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T03:13:00+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.17",
"product": {
"name": "Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.17::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3A5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770630963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770657029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3Ae445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770639204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-rhel9@sha256%3Af4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770634716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel9@sha256%3A78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770633220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3Adb7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3Abed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770639680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770639996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3Aa090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3Aab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696568"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3Ae240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770657068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770656449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3A7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770657078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9@sha256%3Aba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770636874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9-operator@sha256%3Aa1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770645644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-nfs-rhel9@sha256%3Aef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770636622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3Acfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637739"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3Afb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Ad0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3A1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770630954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3A779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3A5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3Ae957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770656905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-rhel9@sha256%3Af4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-agent-rhel9@sha256%3A1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256%3A7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256%3A7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3Acd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3Ae2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3Ab06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3A7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3Ac36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770775142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3Aab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3Abbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770775143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3A70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3A4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3Aca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770775465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3Abe5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3Ae35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770652853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3Aaad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770652846"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3Ac1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653090"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3A8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3Aea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3A66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3Aab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3Afb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel9@sha256%3A2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel9@sha256%3A8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9@sha256%3A3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel9@sha256%3Af929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel9@sha256%3A773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770633235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-node-manager-rhel9@sha256%3A731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel9@sha256%3A5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9@sha256%3Ad21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770633219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632553"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-workload-identity-webhook-rhel9@sha256%3A14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3Aaf154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3Afb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Aed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3Ae7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Ab4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3A07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3Aaff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654345"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638722"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3Ab0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3A4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660586"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3A3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ac0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Ab312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3Ad7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3A85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646843"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Aeb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3A9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770630953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3A62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696657"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-shared-resource-rhel9@sha256%3Ac7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-shared-resource-rhel9-operator@sha256%3A7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel9@sha256%3A031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3A1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3Ad4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3Ab66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Acd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3A9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770645749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3Ae28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770636493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3A36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770758007"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel9@sha256%3A1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Af4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Aa493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel9@sha256%3Ac70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-image-customization-controller-rhel9@sha256%3Adcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3A167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3Ab3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770684384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-altinfra-rhel9@sha256%3A823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770670667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3Affa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770683597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3A8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655135"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3Af9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647010"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-aws-rhel9@sha256%3Ae36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-azure-rhel9@sha256%3Aa300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770633242"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3Af3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638161"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3Af2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3Acd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770688362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3A3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3A0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3A2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770652916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3Ae84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3Acdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770684029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-nutanix-machine-controllers-rhel9@sha256%3Abc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632385"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3Afb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646781"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3Ae7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3Adf5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654848"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3Af87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770670240"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9@sha256%3Ae803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770651414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel9@sha256%3A4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-machine-controllers-rhel9@sha256%3A5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3Ac8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638256"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3A054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-rhel9@sha256%3A25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-rhel9-operator@sha256%3A5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-cloud-controller-manager-rhel9@sha256%3Ad5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-cluster-api-controllers-rhel9@sha256%3A2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3A7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770670344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3A255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3A860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ace0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3Ad820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770633531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-problem-detector-rhel9@sha256%3A331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632185"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3Ae1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770630963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770657029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-rhel9@sha256%3Ae73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770634716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel9@sha256%3Adae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770633220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3A8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770639680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770639996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3A9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696568"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770657068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770656449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3Aa30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770657078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3A2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637739"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3Aacc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770639204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3Adda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3Afac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770630954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3A4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3A3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770656905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-rhel9@sha256%3A7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-agent-rhel9@sha256%3A079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256%3A156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256%3A8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3A4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3A826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3A978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3A9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770775142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3A2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3A35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770775143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3A502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3Addd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3Aaa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3Af5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770775465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3Af523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3Acc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770652853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3A5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770652846"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3Aa06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653090"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3Aef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3Ab80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3Ab0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3Ad603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3Ab3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3Af4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3A651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel9@sha256%3A6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel9@sha256%3A445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9@sha256%3A7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Ac37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel9@sha256%3Ac8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel9@sha256%3A8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770633235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-node-manager-rhel9@sha256%3A94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel9@sha256%3Ac57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9@sha256%3A5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770633219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Ad37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632553"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-workload-identity-webhook-rhel9@sha256%3Ace5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ae0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Ab204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Aa4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3Adf7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3Ace4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654345"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3Ac1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638722"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3A45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660586"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3A5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Abce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3A44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3A7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646843"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Af5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3A6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770630953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3Acd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696657"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-shared-resource-rhel9@sha256%3Acdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-shared-resource-rhel9-operator@sha256%3Ad2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel9@sha256%3Ad66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3A59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3Ad33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3A67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3A43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3A73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770645749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3A67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770636493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3Ae4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770758007"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-image-customization-controller-rhel9@sha256%3Ab8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3Af8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3A7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770684384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-altinfra-rhel9@sha256%3Ace7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770670667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770683597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3A11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3Aa8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655135"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647010"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3Af9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-aws-rhel9@sha256%3Afcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770632261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-azure-rhel9@sha256%3A3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770633242"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3Ac2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638161"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3Ab9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3A7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770688362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3A0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3A058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3A665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770652916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3Ac852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3Af6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770684029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3Acc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646781"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3Ace563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3Aabaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ab7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654848"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3A2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3Ad0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770670240"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3A75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638256"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3Ae068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3A76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770670344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3Ac66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3A5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3A2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638211"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3Abd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770630963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770657029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3A3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3Ab44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770639680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3Ab335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3Aa782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770639996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3Acf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696568"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3Adfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3Ab594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770657068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3Af1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770656449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3Abf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770657078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3A1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3Aee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637739"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3Acaf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770639204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3A7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3Adf9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770630954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3A40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3Aa7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3Af68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770656905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3A543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3A938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3A066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3Ac2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770775142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3A5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3A222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3Aafc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770775143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3Aa8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3A0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770775465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3A1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3A3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770652853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3A094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770652846"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3Acd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653090"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3Ada6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3Ad83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3Aacef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3Ad0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3A05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3Afa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3Aa5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3Ac18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Acdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3Aabf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Ac1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3Aa63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654345"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638722"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3A131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660586"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3Abcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3Acc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ababbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3Ab4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3A6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646843"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Ab64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Abe0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3A9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770630953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3Ad830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3Af98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696657"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-shared-resource-rhel9@sha256%3A6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-shared-resource-rhel9-operator@sha256%3Adda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel9@sha256%3A51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3Ad73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3A43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3Ab1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Ad1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel9@sha256%3Ae71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637146"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Ac8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Aa3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel9@sha256%3Ac283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3A22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3A05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770684384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-altinfra-rhel9@sha256%3Ae2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770670667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3Ad661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770683597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3A7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3Aa87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655135"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647010"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3A3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3Aea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770688362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3A06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3A26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ad3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3Abb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770652916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3Adf5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770684029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3Ac26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646781"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3Aadc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3Aca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3A1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654848"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3Ac29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770670240"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3Aa241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3A30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638256"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ae7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770670344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3A1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3A81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638211"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3Ab3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770630963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770657029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3Aadfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3Ad419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770639680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3Aba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770639996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3A729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696568"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3Adfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3Ab8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770657068"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3Aa980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770656449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3A1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770657078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9@sha256%3A12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770636874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9-operator@sha256%3A2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770645644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-nfs-rhel9@sha256%3Aba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770636622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3A3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel9@sha256%3Aa77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637739"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3A573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770639204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3Abf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Ab388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3Ad00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770630954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3A4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3Ac8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770656905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3A77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3Aa088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3Af00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3A5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770775142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3A012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3A8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3Ab036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770775143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3A4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3Ab71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3Ac7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3Aa92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3Ad540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770775465"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3Ad3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3A9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770652853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3Ad3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770652846"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3A5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653090"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3Ae445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3A7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3Af48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3A411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3A48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638075"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3Ac2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3Ad8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653006"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3A3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660425"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3A26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3Aca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3Ad64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654345"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638722"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3A99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660586"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3Ac1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3A9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Aa575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Acee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3A9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647141"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3Afaaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646843"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Acb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660369"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3A5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770630953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3Aececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696657"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-shared-resource-rhel9@sha256%3Ae77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-shared-resource-rhel9-operator@sha256%3A4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel9@sha256%3A1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3A4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3A97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3Abf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Ad698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770631051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3A64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770645749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3A12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770636493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3A836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770758007"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Aa4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770661375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3A80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3A427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770684384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-altinfra-rhel9@sha256%3A0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770670667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770683597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3Abc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655135"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3Aa7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647010"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3A1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638161"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3Ab7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3Aaf90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770688362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3A8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3A28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Acd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3A7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770652916"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3A55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770655207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770684029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3A0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646781"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637813"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3Af67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3Ad3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ae6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654848"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3A954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770670240"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9@sha256%3A39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Af94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770651414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel9@sha256%3Aeac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770646033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-machine-controllers-rhel9@sha256%3A7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770637456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3Ad0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3Add887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638256"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3Acbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770654778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3A13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770670344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3Adec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770660354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3A38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770647153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3A311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770696582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Aa8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770659693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770653038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770638211"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64 as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le as a component of Red Hat OpenShift Container Platform 4.17",
"product_id": "Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.17"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-13465",
"cwe": {
"id": "CWE-1321",
"name": "Improperly Controlled Modification of Object Prototype Attributes (\u0027Prototype Pollution\u0027)"
},
"discovery_date": "2026-01-21T20:01:28.774829+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431740"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: prototype pollution in _.unset and _.omit functions",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue is only exploitable by applications using the _.unset and _.omit functions on an object and allowing user input to determine the path of the property to be removed. This issue only allows the deletion of properties but does not allow overwriting their behavior, limiting the impact to a denial of service. Due to this reason, this vulnerability has been rated with an important severity.\n\nIn Grafana, JavaScript code runs only in the browser, while the server side is all Golang. Therefore, the worst-case scenario is a loss of functionality in the client application inside the browser. To reflect this, the CVSS availability metric and the severity of the Grafana and the Grafana-PCP component have been updated to low and moderate, respectively.\n\nThe lodash dependency is bundled and used by the pcs-web-ui component of the PCS package. In Red Hat Enterprise Linux 8.10, the pcs-web-ui component is no longer included in the PCS package. As a result, RHEL 8.10 does not ship the vulnerable lodash component within PCS and is therefore not-affected by this CVE.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "RHBZ#2431740",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431740"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13465",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13465"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg",
"url": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg"
}
],
"release_date": "2026-01-21T19:05:28.846000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-18T08:43:43+00:00",
"details": "For OpenShift Container Platform 4.17 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.17/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:d1c2044e31dd213e8b67aa19f63a7bdb93e0424c3d6f932a66e7d1513a9ca1e2\n\n (For s390x architecture)\n The image digest is sha256:a5d268ec5655a0812c028e62007fbcfa0aad41c87f08d2e1e757cf877fa79780\n\n (For ppc64le architecture)\n The image digest is sha256:08795864ea6ef2033c33700005eb0f14ece2a1a2c0330b04eb2930aeae6e6c00\n\n (For aarch64 architecture)\n The image digest is sha256:6d5b7c9ef9f80ea739f79bd997755ac89182a097f1b58594c991442677915b2f\n\nAll OpenShift Container Platform 4.17 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.17/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2672"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement strict input validation before passing any property paths to the _.unset and _.omit functions to block attempts to access the prototype chain. Ensure that strings like __proto__, constructor and prototype are blocked, for example.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: prototype pollution in _.unset and _.omit functions"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-18T08:43:43+00:00",
"details": "For OpenShift Container Platform 4.17 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.17/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:d1c2044e31dd213e8b67aa19f63a7bdb93e0424c3d6f932a66e7d1513a9ca1e2\n\n (For s390x architecture)\n The image digest is sha256:a5d268ec5655a0812c028e62007fbcfa0aad41c87f08d2e1e757cf877fa79780\n\n (For ppc64le architecture)\n The image digest is sha256:08795864ea6ef2033c33700005eb0f14ece2a1a2c0330b04eb2930aeae6e6c00\n\n (For aarch64 architecture)\n The image digest is sha256:6d5b7c9ef9f80ea739f79bd997755ac89182a097f1b58594c991442677915b2f\n\nAll OpenShift Container Platform 4.17 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.17/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2672"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-65637",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"discovery_date": "2025-12-04T19:00:54.313916+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418900"
}
],
"notes": [
{
"category": "description",
"text": "A denial-of-service vulnerability in github.com/sirupsen/logrus occurs when Entry.Writer() processes a single-line payload larger than 64KB with no newline characters. Due to a limitation in Go\u2019s internal bufio.Scanner, the read operation fails with a \u201ctoken too long\u201d error, causing the underlying writer pipe to close. In affected versions, this leaves the Writer interface unusable and can disrupt logging functionality, potentially degrading application availability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/sirupsen/logrus: github.com/sirupsen/logrus: Denial-of-Service due to large single-line payload",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is categorized as Moderate because its impact is limited to the logging subsystem and requires a specific, non-default usage pattern to trigger\u2014namely, sending a single unbounded line exceeding 64KB through Entry.Writer(). Most Logrus deployments do not expose this interface directly to attacker-controlled input, which raises the attack complexity and reduces realistic exploitability. Additionally, the flaw does not affect confidentiality or integrity, nor does it allow code execution or privilege escalation. The failure results in a controlled degradation of availability (logging becoming non-functional), rather than a broader application outage or systemic compromise. These constrained conditions and limited real-world impact justify treating the issue as moderate rather than important.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-65637"
},
{
"category": "external",
"summary": "RHBZ#2418900",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418900"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-65637",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-65637"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-65637",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-65637"
},
{
"category": "external",
"summary": "https://github.com/mjuanxd/logrus-dos-poc",
"url": "https://github.com/mjuanxd/logrus-dos-poc"
},
{
"category": "external",
"summary": "https://github.com/mjuanxd/logrus-dos-poc/blob/main/README.md",
"url": "https://github.com/mjuanxd/logrus-dos-poc/blob/main/README.md"
},
{
"category": "external",
"summary": "https://github.com/sirupsen/logrus/issues/1370",
"url": "https://github.com/sirupsen/logrus/issues/1370"
},
{
"category": "external",
"summary": "https://github.com/sirupsen/logrus/pull/1376",
"url": "https://github.com/sirupsen/logrus/pull/1376"
},
{
"category": "external",
"summary": "https://github.com/sirupsen/logrus/releases/tag/v1.8.3",
"url": "https://github.com/sirupsen/logrus/releases/tag/v1.8.3"
},
{
"category": "external",
"summary": "https://github.com/sirupsen/logrus/releases/tag/v1.9.1",
"url": "https://github.com/sirupsen/logrus/releases/tag/v1.9.1"
},
{
"category": "external",
"summary": "https://github.com/sirupsen/logrus/releases/tag/v1.9.3",
"url": "https://github.com/sirupsen/logrus/releases/tag/v1.9.3"
},
{
"category": "external",
"summary": "https://security.snyk.io/vuln/SNYK-GOLANG-GITHUBCOMSIRUPSENLOGRUS-5564391",
"url": "https://security.snyk.io/vuln/SNYK-GOLANG-GITHUBCOMSIRUPSENLOGRUS-5564391"
}
],
"release_date": "2025-12-04T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-18T08:43:43+00:00",
"details": "For OpenShift Container Platform 4.17 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.17/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:d1c2044e31dd213e8b67aa19f63a7bdb93e0424c3d6f932a66e7d1513a9ca1e2\n\n (For s390x architecture)\n The image digest is sha256:a5d268ec5655a0812c028e62007fbcfa0aad41c87f08d2e1e757cf877fa79780\n\n (For ppc64le architecture)\n The image digest is sha256:08795864ea6ef2033c33700005eb0f14ece2a1a2c0330b04eb2930aeae6e6c00\n\n (For aarch64 architecture)\n The image digest is sha256:6d5b7c9ef9f80ea739f79bd997755ac89182a097f1b58594c991442677915b2f\n\nAll OpenShift Container Platform 4.17 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.17/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2672"
},
{
"category": "workaround",
"details": "Mitigation is either unavailable or does not meet Red Hat Product Security standards for usability, deployment, applicability, or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:03439c083358214ca25b04f6aac8595ab3ec13befd3e3649a6e1cf3be9ea1d96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c6f8823770d9ffcf58944cf76e4ddc424547da51c310dca8477d3e0fcb98753_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:45423a95f31b599bc3542ad1dad02ea7cd4abe9f538c184ec6c6e4a87356017e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77ab41f45b8225ebe7106f596678fa2dd83e5a7b96602501f05293e5e02b2e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3aba35371265f8beff6f9740fe6ab5420cae3ecfa6565a24823f0edd38249d63_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b507f57523cd2bb11b80c84d0f56c1d337f83615234a58685748ff35422744d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:adfdcfbfb4ab2c760dfdbb850989f7b464e61ab6147223230c60c00e6d6b4299_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:db7fa414c1f6599dfb49e01575f63daa0ed2d097ebadad679598fefc55c76303_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5552a44d77930636817c3296b516089a1890b3b03c458fd4823654237fcb54da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:619730cbc03b9b030e02f7b351d6a297eccc6079f8f9102639a9e1bf66262936_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:827e08ead32ddd49f9cab8059a2e6905c52f92e80e687defe0112aff0874c270_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abf2308a064022ccca4abd0d88905c1a7c5a343c7849a6716bd5f45481db05dc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2b2eaa6cb89cdb9f43020ecbc7c8a1db00282864513b9195da12fc3e4a95f847_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5d69edc977280d4e041d7e2a7dfe9d1feb8b79691868ba8323cf1b9f63535d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b594a7893102923c3d75880bc55559665befc2b38104f1c103fac3e855e99c7d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:b8f5a31cf620933324d502268f7991ead4b9597a983acae8188fb4ab7e6b3c6e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:573010e39f990126c00ce7a985de6b613cdde962af4c0aacbd7ddc44422c0ae5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:acc4fd52cc605bb4ca26d59bc8c0c6bbeab161b7b7bc469b754dccdf10d31b6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:caf41bdd9c2db7d8ae688c3c89d33a4bb3a245274c88c94009e0040126420d3b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e445cacc121b112a63e85595b7906261ea08371d376307b3d0d7154001dc0904_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:7e1fcaa182fbb8f986700c9537ad775b0f8c43e0cad00c0ca5a2efac3b7f12d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf1a0f89ffa1e5b55b130e898b94de7f17d7d1f491ee8a3e1a654a2bf89f5e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:dda3dcba9097827dcfc0920a1d754e7c35635103c8ae67ded7a67c022eaf80aa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fb169d7e8b6498601ee5b4d9118a18eb9eabf9ab2f6fac1490895cd963e061e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:43d8c77207206de3a103f4e1d24d8100ff07d761732b755a9ff9d3b21d3d77a1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:cd343b5fad226a1d118ac154bc64c6cdfcb0683cbcdefa5c2352fb1873ca9281_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d1eca30e9c5252304feeaf5f2576055ffb3cdd96ccd4af016b955fa4fff04377_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/frr-rhel9@sha256:d698db876948e9be0b95fb689e8a99905a0a131a91da4298a39af3bf4e88b202_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:11c44c789ad97746bb9521f4c093e7caa5da502a25c1fe5e0e602d0cb24e2c5c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:7b928e8d5a330de327215956bbd836b7cac3268579af159a489f6c7836673b64_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8114ba5b941425e6119f1b7b18a0bd9f237e390ae2d95f174879d81be95fd5d4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bc742089ac716be62e73e845d856efd547fdf57e6ade8c5ab70bdb806653a9b2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:15991e70f9cd104e29387e94e8d20432122cbd74a863a18a03e820a4fd54979f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:3e94a55a7144f0844b960a07e1af4081f1618da57e116dfd237d764154ff16a6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:4d97642c7b9efb70f79b344eab22a293e601e5e00e78729f419719d07f0fea78_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:f9f29cc2be2a4eab0bb658fe65fe2c918e54f2b3d353e1328c2b36877b98adc0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2cd539fb93b71a1542fdbdc495d46fad86d5100d7bbf18b34acbb93152f278fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3fa2134159b9bcfaf1fad8dad425f3c0c08ad417d835026173f28a1050dfc316_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:4097dabde4234fa7180f167a4ec60b918082f977220479827c3502b098ec3ee0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cdd564162c84bf0082316f7e5c8d7f056225661f55b88df814ae41ea20d70a5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:490e4ac3de1631663739d2c0d8ca41f494e49ba4ed24cef0a08b2b2914e0e562_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4b4d3026cf1ba18af631509bca80e125188ba8613f0fc1bea590af7a649f165f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b71e820070a27ad1ce646d8e1f2a0ee3c3a730e09c509459c1d297bd2ea6e89d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ddd616fd90edaaf872954985ffab42b1dab1dc1237660f71185691e0dae9f172_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4de474587c021b2c95533b5ddd7649e7ddd5c0373b617300086592219c8c04e8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:635ab7fcee1a17d5d4b4db17f5e52cb163944903add00609ad74e30703ecfbf6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a241425d332f710c8da8d249475708c9d4cb331bd84be84a72dca9d3fa3ea840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d0ced58c25018728fffaf71f066c47455259a8b7eae2a86bcd131f87e92bd8e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:05b09d2049c290f1be9a8750f7bc53b66b94153ca4628839f8f5eda9c5198bc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:66a3d1cf5c7fa9fce475fbf7bb14798e34cbab9d7cca1004669a808513fe1896_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d603513c13d6df32c79946ea1497c770eaa25c0c119b93bc1e8bc2b188475e20_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f48989f116882fdf0037a69025867cfaca669f616657883a218ea96a77c95be8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:0f08791517accf79e535ac23e5b5566df87bc0566b0b855bab48e98e2a042409_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:1d09ed77689680445603241217b0ea098388eb382b13cf3d0891c9e6de82cee9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:92ba60270aecc8b5eca2f448059eaecb3cd2567bb6a058cbc4df8eb31f83e853_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b3a3d7b3e79a4c0f508ba3301e71c386cc1f3d272f7f74723ffdf50ff90de168_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:411e2315c850fabc1ccfd8dcf95c980f226ea29eb5f537caa1c2cf1834c4e4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:ab76a8713fd038567e7861317fb46f4856f53818a25000ff8314993d051a99bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f4444f8666c706ee5943d96a44b654a5d6876abce33d3de2da04e11c873d57e6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fa056fd52028d4fba9be7f4a89f6807791617a1bea4f20d453ee42255e370aa3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:48babe047c66396b562cfc85cb82e8662ce782683252fd39d7b0af403158b6f8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:651d19d6d760994e13f84e8eb4eba10b28573c9d0232544d96716f1f33f75222_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a5be7cf8f01f48c2b19293970be38cc2e5b21db01b24b558a45aa8e10e8c40c8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:fb8a71ad5d2b22abe70086eddc66bb00490214cfe48105a44e990a1b457165a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26695aceb85442055648ff5954727110ef4c606b5ae8039d21fc7f62a6db8590_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:4d7608060116545149f6f935ad765bd8522c08ae31c42be8ead83d2e8fc9dd8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9158cfca94954785db5bfd366d29a81b432f1871b26c36f4074277dd0c2161ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:c18360443200476b1cbff2fed066c7ad739dacc8f41787b9d31fca7509b8c7ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:34acdc7540ec7a7290e5d2da385b5c8e48f4abf267347b4064b1461d0823865f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:5f39e2b2fd7b44bb165c898e01792ca46ac21271e26216668c343fcad218ba89_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:868981cfd35b80ba257a10e07b34a38ba824bef2991e07c180a7ea40246528d0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2727e04d5ce6037f97e2c07431eff3b13c090045564265038c49b39220ca4d2_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2f955fb2b62f516fd5f138905ae4d42126ec3630ab77c01884ea6f8378adbb5c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6f9f5cc56d6ed87c239009c9aabe5d53fddbad94b25aeb98b82e51cfd5614065_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:445ed920f5b0399cf430a4e176fd356634e824cd883c199ed144d15afbec07ad_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:8679a21829bc45f3780510debe31597ee2bdddb643eb34942a88d8bdf4ee4ce6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:959b2eb778568b608b37fa2ced044c770a8bff30c32be98a315b9735ba0ff374_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c37c3b887ccf9143eb6474556035f0b1fcb273a20c45923d2da45f5faa7d1166_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:3398fc50fdd07a18f9d75b33fc92f5be4b52fcf546e43bc9c0e9d21febcebb96_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:7f3af9816242db6338ee9c2899c21d144d727b82cbc4f69d54052f31f8407c46_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:c8e74b57ebd00db7236644c2f26f697c8ebf235926a790525b39694aaf51d68d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:f929b7ba166009c0efa03b3086625ecf2b6a742d998bcccc60d5d13e37d5d2d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:773b60106933d83b93a447cb26830d5e3efdbf8dcbb481e61041af9ad6e3fb62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:8967ebedf5e34dce5ab757805823ff7dae8df78b93988795149e74fd8347b25e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:731b5bdf2794555f25e58788a7205d8ba58d4bd0184e18781132f91ab41b8205_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:94b97dca40e50397269c13c3b8f8e0f7436735e103cb002dc5f59e398276e7b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:5b8b41c61cd3449d3124399c3e73fdf84409f1f0ae586409815496c74f9876f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c57c14b4db0fb341027c909806e51538403005a5a57237d25a3068f09608141c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0a917092ff375c594976238d3046d8643d2e5fe7f5411f31115ec2eabc48f4c5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:d37e2ac29b3ad4e90218da5575f72b03a61a046413f0537f80bbe8463bc007d9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:5792b7caf65c4ad84b29992a8a169ffd8a1d4feea836d0cff82952f62f01949a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d21652b137f580e9c9cff4b673268538173936ac663e924021f2894856c8e2eb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:78b28eb0a98cdb0965d3a4b81fc39b97b73a0ca8dbc6137e608b63db0c2ef9df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dae6820f162a44fd4d2a4448e89b95032bc359fa6f2264c62e8a35f81cfff4bd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:e73255bbd907a429aca918358850c4d8486b1c2c5cb3e29972ecc331744bfa75_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f4a772aac333720e9bc965b322b444c518f06c68229d9510ab629abf6d3ebad1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:14135df4633ad04558bc291dd85ae3fe43a15b19e20a60eb7e6ad51e94a8adbe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ce5f85a7f25c40f5ed170a6a4c8b3a38e38e88d9040543b6e4053cdb11b54189_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:37f124cbf05cee4ce010735c212c17e31276231388edbe8077b21f12c6e5fb51_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:4c7303b344c137a8ef69916357b87f1f98241a1b739dd5034ddf6a6fe63e6022_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5ea6774c67fe44e259dfcdbe3f15319e01fcdc65d04578d2d3ec9e1a17fc209c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e0d75075ef4c94a8fa5cf0cd52900424acb6511de7a997337938281f6ad8ae89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:683a5303d197f5489f6bea127643a0201fb2340edceea1ab6c45623082aeb516_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6f15507bd3f92f6cf0d9fe03553648fd83984e67650c07662908a9f7042b3160_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:91c39a05c656097f81ad7890f7ab972ac4ca6356df128aeb3b5532bd67f15909_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:af154e7af6ffdbff708ff43dc9975e598f121aa5ba71721515918f0e82bb2d88_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:264a39a67d9cd2cd0d0cc2a33cfc0644c5382fc4fc425e243915c56b9294a516_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6a32d1531fb5b2611af5cc3fbdeee85bd1f9a1735d83ff93dd1de05c2781763d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:90b44e546c55febe4281ff011ea698591593a7741e1ae37e722ea948c4966718_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:d419b76283a04f2c9c91124fc0ef1a12218cb605ab1b144aecfd6d6a919231d1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:03f6e3cfb662db16016f5bfeb9c58a9eb5fca4c95bad3a8688174dcec7af0cd8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:312467375d77e394b771dc99edb83442f878ea72e9e2bb7882bbcc147a7d7f00_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:73e03749631cc391fb66abfd18669d61148fc3bcfeeb34299c9de5b21ac932a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:939d9d17a08f631e05ab2f829074179b96d47779bde83c4a39b4da460dd6c0df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:02dc75ba1f95db1624c066f7b78e1b751fbc0e7b2e48a1e75e03aa22b4f96dcb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2d264cf5af967d6db7597f3b85a9772034b2a505f967eed20fddef2121d2994d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2e7ce5d3f84b7575de853ea1d6781f04d65a18860aec21cfd9d17437b0708f4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bed3a38c846f9a5ee52550c271b44264f4ab8cdfc41aff90672f6e64102f58db_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:75ddbf6df05f6f3346083870dde5a3f6fb4d4a0629ee71070bb3df1d42ad6829_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8247f6c14b6b591ce617793f91c301badae4a6ffedf7a7ffb6e9b5fd750d921d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d8bcea73d9edb3765ba5bee3c4df74ca025408c78626a3a419b9acd9fbae9ccd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb2fe967815b59598c5d11a87bc904b933e2dd39de37de3eb06d92fafcf33f2c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0c898290ee2ab81450e3e67535829d73268836abfab818403f3123061ae8464f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a3925739eacd2f533cb0a0dac777817b6891c45d5da5fb6aa3a961858b7430e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a92e551d951ae5f33491e93f9b24caa1b7061f54e1c68c9373f93068fcf8e37f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f5063f0958eb7f7b16c1832c9ba25429d66d9eba3eecefc3880a1078ece336b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:3f55b8834f15cb82c388878111245c7a645064e11edc92b2dd941b410c9dd2ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b204b89ba16d4a83a2a7d5ebb832c050911b4ca09fc7e3be44ca98f755c4b07e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:cdf93294fe823d0b090871ee4fe0868a1e51c2cbe374cd763142d337bd018e90_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed7dd8fd009dceaa526c85b46a8be5c37648d3209b5dedf338f854edabb2e6ab_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:2312b34122550bc1d0ce1d60639afbeb72da980f20801399229cd104e7b7f1e9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:79a924c2293bf082bffa3a81899cef9fc03322c0ddccac11c13d871a4f63f0cc_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:8d867d12b479f9d7e22817577bc8e9c30c544ef6633aa3fcf2a70aca26be5b2c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e7fd15b6fb005e4c939acaaf3d3a9b6d7bdd6a45b41f53545834f8700ce73429_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:26c19ca9cfd1babca0005449ef51fe728b75d5dad7b02d4dc7e14583b067f68b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:a4071fe7f97a77e3ceb64d4117eb8439b88a4e9bf0efbbc9bbd5305c69e91f0b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b4e2f4bd244a06bd878fde55fa4ffc3eecf18b9c2f372cc64ac98421b5c6fa12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1c9308894d016f5a9dd7103e772b6bbd22aa21689dddccaf3077e8ecd82fee8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:07565c5a853923c88999f685bfc58b7182ab5a521e362410d8f0a7101710db8e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:a63a4d3c56a2338a592c69bede901bf2ced6c73cd7c8f87ab45023c06b1bdf8b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:ca6ddc4ad1a454f603b8f3a2cb78274838c09872e60dec3930adc6513312a34e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:df7b767affc81692dd24109bf27730aa810fd4ecd9e80203addff41c48d9d93d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5c09908ea86033377c52cd20c5f0724178da37cd0fe6006a20dc08cf2b25f254_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:b3c225361a5286a0a1ca6917b723b4e4f7b4f2cc681501956e639b05dedef18b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bd101eb02cc0138ff7e6243ecfd843bb916c0182808307e39f8d7bc6e91a6d51_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e1f624a616cc80a22f07143f517ca04aa9fe72c135dae9c411452c63d3898076_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:254f66b97446fc28455e6ee1e36787008507657b0f3a5b823dc7e73b2cde4b7f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5553dc4144194ce9606a21dad191ab4b4aca7ac675b00b3de5dfee842fc6e4c1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6925e45ed44d4ff6db8cc8b6ec091ff73530d349833e8b0d8860c99fc7e51867_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ce4064b45fca435f87a08f0ba19467bf011e6e0f6707e2a7595cceec25cf1e6a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:214f9d69b08974df23e78b83f566757f2114f6e8fb2b3ca80dbacfec380eb1f7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:752c2ad2e7a9de7d8b0610c1794cdfa146550bc5bf3efc90e0c5bdf29601bfc4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:aff848987165bcb773334d6e0d2329e5088e92263a020746a59daa9fd245694a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d64b673a8c3ed01c90848c89452fe6009449bb40f876488234aca377e6298c8c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:60460edbc7138ffbffd354a421e788123e0246ced7943af96f160891a6de915b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:75512e6abd571f62c93f3aa64df6c191cee8de9cb073e9c02e61897c6bb7a0b6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:918e2d665c70ddde1ecdd3bed93fb654dccb020ae744042b90ef24e52c2c0b49_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:c1eb2ada9deaca16e1db20a8b556e8cdd3b79c47832d9906f370d359ab58941a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0635655fa5179c389fc5d10b958a849236825de578ddcf076e3e5705fa1d76d8_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:0800a26760af77afa690cb88bbc7bfda5916e436d42ebf7906148a779f7a83e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:66cd1597fb5fe8aab6c6a5970f5e54fd22b4eb0753e269ef30b0fe0a1e75f2d4_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:702250cd2ce71157c6d6a7e4d95efb347041a7440a817053d4e0ef2a8b39c067_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2dbcb2e3df8b867ae8bb66f42153b774523129b873bbd7a7a64805ce6ba1308f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:398486308abc31bf9201de146ca854fdd3ed223c5be343ea095f853d296c5122_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:6498752733fd4e377699deba5ac302981127cf3056635026bfc2055df7c80d8d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b0f924a1eac05eb84bf4e9bde3534b03d750beee156a0e0a016031c861d75ff7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:131b14211ec1c4134f4c874a314010fb7ebe6d26829cfaf73ff9e80ad0d2b9b2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:45edaf38a6e7a98ee0329eaefef74e8036866f2ccb5aafc28ac681e046a2222e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:4d151d05fe6b0fc55ed97cf561242d045e2ea1b0650f5151670a0718e6f3eaad_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:99b7b470162c0d21b490b760d85112adf5200ced0836252dfe48099bc05488f7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:1000bd7e23295468547ea0029121f8ecb7ecfc6edb85645d039a0539b939cf50_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2ecd9f318058dfa6d7fd5cbf68394233b7723f81c388126d4c25f27b3be4a691_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4530b3923bf108610916bb30d7c2ae6e861c3d891fd2bb3af2b72eaa9a77029b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:473c1859fb3595eccab261510e07667f01b22d1558cb013a04b34b745623e840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:38dfdc6230654b2b514323c71bce1d7bd8e78860bbe329c4ffa7d3b5a6c34ff9_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:6d856c22dfbc26be8f10f32439a56a0b406552d61543c153f965467ac8868a28_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7229d942870ccbe7a6823322a54e7901d1c091461c635107f5cb5b3077578f62_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:903c57a5adba0880c445fd6bd5b97cc29332a970a1380e2665d46856daacb458_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1db01c86e86ce6521bd4f95b95b39084630945599bad9a4a037157e2b7a0a207_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2511e06b09330b0d0ae6db22b48bc557dfd5beaa586249f48647d4dec5c8ce72_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:665674a1a7def872e6a30691701d79e47b600f2618d2fed2d9df83549547ed0c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:bcbf29281a1c55397517f14f21bf366da68b4b092b9b431888d69efee5c03cea_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:1b458387fd0c3f4f92e2d8f991fb2d4712e1b6cd44544bd78dd14dedf292505e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:46a21d6113dd0cdd0cca1446c056d6a60098084f804df42058766ec241cb0145_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73a689e4c571f813a03b80fed79ba332a776a2050210d0bd3d8216b2323579a8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b44920dbfb142d5c244e01901d4518eb66e37818c966fe6511dff36018ddf80e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0c1e6d227e4c7ce9f7f26b8d83e9f4e66fdcf9862a4b69b76b137022e81d2db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:14f105ca19cd4dfe5703687223a2d8b180dab17914c9fccd63df413268071207_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7099bd63a7fb2de2b8d5d343110a27386a5db11f612132192a536f7a27d72b42_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1f244d89333467e934f89081dae5721d91846d6c2614a5b0549d0711d5b7119_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3e405db77f118ae54bf613b771105aaf601aa018442c829811b145f7ba4fdd0e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b140570df0db224414db063f3b6d26a7604a66613daf83c65b1d07a229411d1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d32830ff6ac74c30d09e74d482346824cab15343210d48ad575f990c3303aa1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:cc8f9f632df2feff23206bf0045ef26ab75823e877c171998d5a984515f2c4d1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:28ec53c47443e548c5622348e0c2f77cc1bc104788d74aeb312b1c3f0ebbd6d4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7e999ebc8574612e2667af38d9935581011684fa67082151a5235131c49c5ce2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a575314c9558c495fe81f4da083cb986de73e62860c331df34e2a78232867618_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c0c82af7bcce8758a970bf0c0f9c486a1df8f2098e1d0af5ae0d67edd495a5a1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6a2d8e76e7632918c066d83ffd8b1818cf00c7791780f32493def59e888d2c25_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6c4e3c33837e01dc743c6fb668dc70dc833ea4c089e8e4181fe8944da8df2a4f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:93115b5eb0059834f7b314e3036510abeadb2b2e0d23dd8669d9b87c0d9dd212_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b312d0206536d31670c490843eecc1e6957a3e4a60ad6510926e112bf4c6199b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:129ebf83bd993b1822198e68435048c905783e04b17f52b8abe6d15b4ed33d43_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:3bd760a897d76ca6e5b5d67de8738e2abfd885214926fe969ce4c4dcf404c95d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:56a4ce0dea70218061aaae7f5a881aa1168c08bc93d4b65e953a5dcb67b99389_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:98a3394c7ed937a1563fb2bf6d6ecbbaf80c0bd7ad3e5e56de7b8cce45d62fc8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:22225d278d7291a2eb0cc50a02563dfed47950a7ca3bcbf8826ba80fd5f40965_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:360c45e36c92e98bb6ea18822bb615fa6b2e3a105ecba12cbd996d7c844db774_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7506fdde4c4f4a0e6e794e0e585db60a8ec9266ff248191f5a088c3c906bae1d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:cee85162b6c15d4cf8a5802b6d8bf358154c9b6cb9d4cb16ddc5cb812bd9b79f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:1b893e910998a40b251c50241a48a20038a25809abe4693ef3020efebd93f7a2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:543fcca33dc9b364bf872206c6410905347723954f8383af8cc56746e92a9f04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:babbf08c628fabbf6ad42fd1a0d761a6d9c8e48d1d24a549b7862ac7ec0a654f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bce838c645dc3c5462c8f8add60246881683c0aa9e52dc2acbb3fd91d86a7e60_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:44805fe518267f2035fd88a5d6867ed01edcb698446b4de0bcf8a07353e8b66c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9074a46bb0a4a6acd49813c801fb8d0fd7666c27db9fdd42c015fb7d9031420c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b4307b49bc024a67d750d5559197e09220d597c578c7d48983e4843f61342e84_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:d7e779704d845d9566debea51df94dd13fc70832c2e9fb3749c911a78d2c5a83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:2194da88aef05488a64f7f4922b55147e101772d54f5ac9b907873966d2c66d8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4059080d1f4dee9f214114c706d051815c2ac9c6a7d9ee7f5e73222a4bc03509_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5269c51856b470f24d16e23bbc70df02ea033e43a63376307ff11471410dd919_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b335b3c9c4a4cf6a5a29d542c603c9b276b0698e820797b5730dea56dd584bb2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8f97bd6e957ddce11ca2d689f97d2e85655547a0d5061c44a8b4bf77b2f7ab65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9bc5ee7399ed5b82baf939572103ee5cf0c95889d7b1df16368725ac77156d59_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:9cba0841bf7ca71a24f1e060c5339d434bbe6a950a0a87efebb66681b3676866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ba528a487ad58bfbd255c124f57eaa6315d663af4a2386fa54592cc4f2112998_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:23c292f6e642dae1af275dae57f5080843499b927d801339a0cf410715a6f76e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:43a6ca1441d19ab1a0da23c1269f226f962baaab69eaf7558cdee677653a57f9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:528fe8e6208c1a68f1ebc1f961b0592c8c7279fac058bf579c6cb473818054e2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a782eb5259878629bddbd731734ef78ad9ca6bd19eebe2829c8407a1460eeba4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b7dfa6413ff82022b7b37707d214ee7902df6fff42389d21aa4b9b3cf3f4d34_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7e429d52a5cf9de9916467c838b682b143efb4a41af3262b343eec8d3befbe97_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:85c3d718fda737cd2e6662678823eef1762d5fa2c956cabd8471ca4904144c9c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:faaef65321f1dfed30ce522996fa75e32faeb2fdc2e0a5e8562e3089db29ecf0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:799da14068956c574f99f3c196ca276de419c1e7af08588fa8d5c6efa7e005af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b64d0a51609639fd354f763263fcbf84ff78a8601be46f706fc1107ef2a2fe6c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb291683a25fead0c664ab0aa542d21c30fa37060faf1856912e66d53c7ee941_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eb40a39130e669424f1be55c975146e66395df5d04224577f3e99639e4ca8319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:116f30f0ad2701b65875a7899490612983cf14dfda4fca904bc0bc28373ee432_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8c4bbf18f3c7da586798892409bf5af0542897abb657e2055abb6727cd827c20_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:be0e71722f113029c0051e7e7d0f94e92960e6719cfd0d0c651e56fe6327ee78_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f5b6056ef6a61774681fc4019b38ba1cb60793dccd19387fd57790c5b9023c05_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:729856f88fe280c4e862073207d08321991d6a4235b8895b0f95767550d63c04_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:9056d381f6c393b1e28392e373af2c1b2bdeeb0516a25aab37edd6254a865970_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a090de286422d01e126124bcf9f31f9186411861eafaebcca765655f8b3e4c7b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:cf92710e692bebd32017e327f561d050f7546554b087774e7aa6b05aaa55fd21_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5a789f58b54dab6dbc4ee29fcd0c5862338eeb1f2b52ac754c7431eae1dc1543_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6c322fc94a84ee25620ee359fca0815140dd9f746ec46b1336b89e8d90d7cee8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9298affa5be7ece5f98333265cf202a77548341a38b9c923da22bf9b4a179812_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:9bea3718fdba1a92e5ec95639a9b3207d2f8c73522663ebdb69bafff0172a8e3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a6ca6dcf5c5a68f97bebfee4958c88160e0cbf6deb3a14f1f7fc44a4cb96943_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1c270ad85107fb3ef4b4861e57a93351aa9ceccc5078a2a3941a56f1c0329e85_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:460efa5cd234c4065ae05d291e7112ef2cedf2a1275796e90296812609193a2f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ab959529f8dc12d87771cfb22e31804c2f92a386f673f2a52a097dfa6d285b70_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:02bdef491272bd0ef5c630074e379803fa4d3900c6cc24add4f6c3108b6e400a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0513867ade2d46ae366afc4fe6729fa5d6c8b53791369dd45436ea8c5b96b37d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:10378b2af30c06dc72c6e946ec5dc49add94073f9e0c3e823ccfcf695a850ead_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3da7289d7c8704a29245da279c125cab2b11a498a54deb85d2eb33c8dcd428cb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:133cbf6402e011a002f4ca99b4af08f3cacc1452725a1da1adbe8ccba9c37948_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1e060be058a4d0f7d8f1ee51dd7aaacebe06b568114668e965e968930efd8b3d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:52b9c056f00b019b879036736ee91d31cbb0bbd2e5f1387698b824f2956b3edd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e240cfb7bc077bf1f0160a90941bbdd7842be23118bddac9a1e71e1c7995645d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:273a5e763552de823a6e26346f987566d24b889e86148fd27a8aed030e71987d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:328a118d8884e697989b973e68a4bfbe969900c01f1de9336e3a3da8fbd7b9b7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfb9918faf3dc6a1086a958239261aa6c9b8fe3df8ba7306ca58d7252c988049_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:dfdd2196f7cd1170a70ff864de7dbe2d674e3a18f77db1327d517d010daa35bc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1df9ea08e01f2e9a880309603e36c9574adf7992671d9d56a21844cfd36594a0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:be5fc53921b979684b1e652f4a7fb8d157fd5c9e920ff750b6cf761ea937d6bb_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d3ebbd226f559aae412766f4bab8065a2c471fecaa009bde446b4328e33b7c77_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f523bbcdfec016f178967fd48fd7477a3bbe988f3120411dd325e97cbe109181_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:386efda49ab6426feae521e6f91a39f70f145f679f4d3a7a739cbfa2d533382a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:80793968484982ba2d52eabd86548f294b096923a432049a73b39cf51e31b889_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ca961f3ce9e3451603ce25246811ff1fe3380ba4d6006393404e5c115f08e5b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-console-rhel9@sha256:d540dff0318dc956410df2eb624693eef2228625c15657005b05e0d8ae432f90_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:62c4847ecc0dbb3891a3bebb9b3e1fb429ad6ab7122af4693440028b5dacf443_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:cd3ff3c99f7ee0dc048158380a58693e2ecfd8ef7dfe8a565cb8e8c16e842069_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ececa0ffe53186aa25ee2ff7d66ea6bc580aa87d578726bf8c1da8457c0b0423_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f98143b52e0b219525a981775935e7d66357370095b0e6bdfb7953a66d4e81fc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:0907a383d6e8f4dff8178dc510a3dbfc0451d4a7532b6933960a9df3f1e88720_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:96d6cb9e1ae887fbd7b35a5d63a1fca9b39dd4301970e4d9b4d3ea8994e4e319_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:a980203d4735134b74377035ebe73eaf6d8e5e8156332e6da54f7cb8cb2664b4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:f1854fd6e13ccf28223b11fee374d4b859c1f7e055a08e5c1480c17dcad7726e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:2063d8d2fc1570ac5c9209f9550b5fbcbb6b21a36f453c070139ab64d84f297d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a1549c625108282c8c0b43a4bd9568ccef5524a561750b7b83ba937298449980_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:12def0481bf1cff76ffaa8bb5344112260c11392e2ddfba9ddda5187f4138e55_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ba10a9b15931af5bb3668cf3a5e74f66004ae5a38f29c72e6fca4f49bf9df2f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba088a1c53bff6f88169bc448aa96f2c7fd1c05d444e450427c2f4e595f2b9fe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ef9ed5248d0d7069da44073e3a01656ac72fe773f2557948fe85929301f27af5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:4c0af645e66d2bdd5bab59edb39a596de769a9cef0ab9437866b2df611ab6336_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:7318e32ca31ac55cb8920938883e02df10c08e2638720c5457f4f51ee3bd3806_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:d2644a78d696c09fb4dbb8a9c310c24c6d336bae6a2d2101a3106bf0df80864e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9-operator@sha256:dda1a026b0f7dfc10bd9ca52313f314d652ddda762edab73dd3cde34bcc5a89f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:6bc78234f03b88f847fa7e50366ab041c2c2697f9bfa8f76305ed5aca825b0f5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:c7fe14e24c56c6a7ea7fcb0c92426721c6f9250a1f980b16ccbc005beada458b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:cdd5950886028ffa1b0d4b18c7ef611d72e2a0d3708a729ecbd0986f599a4825_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel9@sha256:e77fa9971c0b06435001f9e46491c4f561ce05b28c7ae06a0b3bb72da1f3eb58_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:031682315dfa440ea83e735ce5bb2d9d028624f89d7da3ba945024eaea97e560_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:1c0cb08c48a4d82fdb9a2782d91c9fcc2b25c983eed232b79ce64208580dfca7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:51c2eb45649ddfb40339433ebabdceee5cd1d7a13b3a6172781f71843931c26d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel9@sha256:d66332c1c597bcb50c7a5860c0a1d19b0a7723e80cefbef7d74cb83bc9e6cbbb_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1f2294f3a73d5979d82897fa2f2b1904f88abadb1d6b4ede460e7fcef2af2a17_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:7cfc3fef08ad545e4285cd504d04c99ffb30cf5487dcf19fdf2dc834f76ebc6e_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:a30ca5ee18394d89984615f93372448b0ea08cb78482f3a8f7314fb20689bd6d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf70819a1e8820e0f6cf878483ceb201cade5c845be0a2feea8ee3629fe1954b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2ad6590f527c6c3c2a62bfd373aec2a7b718166421696bb1af8f90edab680394_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:43ce84667a92bb8d12d72948b3b2abe860b2bd3569780d9b96b098a4b81787dd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:8c89a3f78b0561d12effb23f548c083d9026e02bc7b049474e1e35dc20144680_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ee3428524c83b292b3c645be0f66e2a5a88ed27b5b8e79c21db43dbc0bbb7d1f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:1ba027eee47fc9f5ab3fe7ee2b542c02dbb39c03c9b03d3961a72a97c92a2d83_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:4127d4d7d156a6faa5b49f1abae33bc133501e30a680a727c8477737727e1e4c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:59c865eaf81f713e4aeb6c3ed263b33d9e1d892126ca5d86f119dcccb49bac08_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d73cadfb2abffa326bc8bbba63c86f76f108b1825561841775afedd1a318aec5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:0c6be9d25ab07fadc45588b89e44e768edad407efb3b7799bfdef58e87c1b2bd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:66be3cd3f60f1c1572eaab2b0b4a88b1847719534a8ff3703bff91cfafc8ff1e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:6fab0bedf316aeb8c1c4bd4c5e189a7c0613669f4fb43507a9e55ff3b8598586_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:91c517b5ae4db949495f6c0e55678a0e4f377a4eb660d079a8cf3a61450af2ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1fd4cf72a6a0a47fca89a35bf3952e21295a859a488e2c9761e07cac24d66261_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2e6aa6eed93e0d5f810acb1957d7c1074fc8ece1a2e2c7681aea8856283b4476_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3f8507ac22163216e5eed3dfd1735c8c762e1bd30062be45080532df4f52aca8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:cfd1d5878c47407c5ab0c6c5a4bc1f965a973f52e6a0ae50b9165d38491630bc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f77243e07fa595b42bb240b31ce640131ab4f04e851c927d7add7a788e4836_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:91554ab7ef25d01f8e410773d7c2dfb3480283826bc35cdddf58633da610fa9e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:940b8705dacde7b471587d21abd7069e851e38db354b61d45e5a476a146b5c31_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:9533ee5fb67128cdc361c04dc64c954aedf04ea3a4093744c7a41441c3ef8d56_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:43bdcca74c900ab1a1ba74c1a0156ab66bf536bb8424fd5e251300ad3ac5f6fb_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:97180df9505656b2af06412973c644e0d4a3aecf7dbcd4c4fb87570a111dec00_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d33cfdfa5d9fc8e79e245a43df77655532ff80a33ace9cdfe7f0b7aaed2d413c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d4396ad765b185f4d691edb5a8b468c8f799337301a9de40d5fd2111c657d636_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:0127e5cda95bd545677ef9964e2ac0ffd2a1bd1e9ba79218a94dc8208bd66910_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:1ec466f11fcb3b1032d9cd8405773975a7f19cf3f568c7e4c051c4c3a6fb1b58_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2dc8af04fe35e16da3f5c32fd730b2a494897b74c7a77ab25f55615d6a0094e2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:a77853b83b84bcc4b3c0eb1f4e7718c62faf48b169220c3b93f1afac2597bdca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:3cc4a1682694c002721c19de93cc66f7a542bf38a3161ca7d54d5702aec7d5bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9adead22f5bb7c76229cd22cbba1160405c2a2664bf5778ed11af2bcf335918f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:cc856abcacf8a8589c8d43dbfbac377bb04e6edcd118f2fa5612d812ed394eb6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e35ce7686807343230597b1651e69e676b4ff2510f326b493ca236504d1bb83b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:027ffbb242e1c1638ffccad11eba8c40b2c5f7ff845ccda7d1997783ebcf20af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:86ae067bb965fe2b008f76a44941a4c0b9ed596592dbd7475cc0b6ed2a1e37dd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:aa63f97b0ca06a2cfbc8aa2890d833e518ea9f59bac9e4aa655d869a5957c530_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c7addc617db0b8220b530d3ce6d01887d146f84b94580065214c0ed95b8162a0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:24c5779902bca9f3c69a95e39b6efbcb08ea78f560a6b9941c636bd0f1e85a26_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3492acc231ad22717058309e28d04443f44a36cc91ddee1a517be7bfe2a41e37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:733690c4879e94f31f86ebef87cd154610b7d54a82bb55086c61aebcf8afea86_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:92b5bb79fdc42b851bcddb38f26fa46f5243309bccd13f9eb02a2a8b34440bc2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:67b6453dbf752b284bb5fc888ac5f88c7785c75403edfe87b1282a63b0ad7197_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b1613a60989d8fa3b7d5cc2b0c838d858468a99510803baeaf02e4147033158b_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:b66a1a75d24c8bc1dcb133f05bcd5336f3b9cf136e6ee704c20dd2320d789bba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bf5c2adea8e8ba6cb1cbb812d42ac30d2becebdd64925e1ff266ebe9b9234cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:64bbf1d43a7aae21a54bc880f131e181fe4b6daca3a5662113a1e2c998998492_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:73f02bddee42f133c9bf379d0f6f987698bf543828c94f6132e6b8b4e9d80393_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9e788c203501c8beb27c6ec3d6c8cd6baa697b92e93d1a3e3a5a3f31986499d9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12b44d7a9d4a48766f90d511eead74600fe5e7b2b84799d4f58aa09c951b9e89_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:67f288c0cf94695145fed62f5126216dea1bf0e49c4a1bc8b3480efee8e359f1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:e28ec3a4cf42e031f3081dd07c110114cbdb4d752bee22766d94ed834f185ad9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1a0e79ddeeaec737a954172b0b3aff82b3f15926c295494d23a30514e9fe441f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:4ad0bc153f330c730d42cb135c6b57c086f712ac1470785a578bfb09c42df5d7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a4d02b5c626b61c35b9d08cfae61c7bb320cd337ed285473ebe17c5bb879faf6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:36cb6c8359dddb4dab4361bab90ed5e1b8b07d75695d0f36835f2314900201b1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:836fdfe8ca4498c9c8d21f582405e40a8cfba757c2abacea8a66e4312fb75f56_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:e4bba34520a238b34090821c82d759f835d8439bfe057fad400578e99e9a4353_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7366730f671e5ac1d5e24cea6757bfa6a640a3d77bc4ef49ecd56267d8eb68b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7d9ca6fc2f44bbcf720cb2b8c164b2d05ae0653bda80ef158a647fd8f9c55f4f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:b388dfaf5c1c002ec9da8124136729f01c9ec853c4d3cd40dc2cfe0dd16914ac_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d0d1d93fba97290acaf6f95f4750db2e1dc5b85b32e816d7b973d8d4493e10b3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:094d4813cb3850814dd780bee04e7d5ead456e866e0eb7ad83480946177405e4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:5312ea86efe79cebf387a2cbab7178137076291735f09b2e5595c8757bdc1b88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:aad12c4bc679dd1ae11038d1d18e435ad8adff445955370808296ee61f790e64_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3d864b287e27b47613e201f6a3d96240bf7793cd585fa7498ea457196a57ac9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5ec92bc66471b894a94f2a27f6331c20124957eb086c336cb50c340288fd3ab6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:a06765c73b5cb67221189dd8708b9b0248e09da93144fc2e8c305c9a8798c20e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c1da899683238e5041a677626a5efd52ed8f134b38a9cee90b1ee566bbd37c8c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:cd470bea570624051a8e80af62bb86eab70c7c23471870627578b709477df646_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:29fc74e86705867611e5e6303c42039c5c834b92caa374007f3a9ef6d5beb2b0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:902399ad4f083b1e68b53a7898b2c1af382c96bf69366950913cba14cdc7c6d9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e957b06a0f5bb530e1c7b75116419bb784e57cda814b5777152a6c64d67586ff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f68906052d76270aa2cdc14bc453d61639103794a6fa9c95aa90539cbcb863bc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:1b59e9c31180973bdb6d06cde158940d61933a9cdf4216c1ae8328264a26f9e0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:e71ee90a203c69ac33fb47b1628981c329e7a9500e345033223d1a1cb66043a7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a493ed7963da83fe08c42c952a77b544a683c8e4de719a69ca17d5c98ddaf5d3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c8be6e18c3fcc0dda5b41e621e742f03ed23b68c74dcb45889355f66cadb3ff4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:2bbef5f8f3827ea558e68bc89dc958dbe2895035cfefa7e922e5fd07d386d03d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f4d17c39184926114318fdeaa1ae03c609aa5cb2baf7e4a6077e017b0e123b62_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2e38b19b5dbc5d03f148bc96f9de9c194d757aeb43515ceda612980e8f18e148_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:94121c38bba229fe89f32cfb5ecfb690d2cc6a7b77eaa5198ab8fd30b870f30c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:a3426af0a9c5413d65fa92850a8e2528d95925944f42c9ea03d0627d05f51213_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c283c8e46d58c96295fe35f11f0063b19494b5d6b2b0c40cabee64e833cb3e4d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c70903433dfc14721d3e5428d4b5bb090ceb2d0d33cc05e3109b79c5187a9623_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:b8ccd0dfa3d60c9f5ae381b4ccdfd7e25fc6966d023b071dd58c3dd92c5cf71a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:dcbc89cee53edb349f38d69e2c99bf1fc352ad6a3835bcc8eb8440e4210bc9ac_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:167a5d369b7c8e2b2409364d80a8e6750e25b71ad3e1cacab73be612dbec83d6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:22f8cbd1099d551e3cf30a9049a4e54e5544f1a5b2ff1a646e42a4d46202f191_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:80946494e3d8712867d826a34c947fe188dbfcdd3d6cdd2e64eac31ed482a4e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:f8a868bbe79f9e9b909e7d3600f43fe7ef6ab368e4bae831cd54446a9132f8f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:0672a8d9e26ed9cb41dcc31f0f43b092f6f8c8ee688b49df9f4616fafd409097_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:823a1ae8d71c56d9bf9115adcbf6f1335d316bbebc166a8adcce0e8917aab311_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ce7814b68acb413757fa1179020161a3bea5b5dc248c9fd4b05602679844dba6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:e2aca39e08ac2f86bd1f0b1714fddb024e1974af6d542d9f006e6f7e3c961d22_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:00ea3e14044ca759ae0f8eb5761e1f30965a1302bc7d0905a64a0a0908cdb5e1_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:914e67818bdac20ced432febacf41572bf7b735cdf6011813cd3971a06409556_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d661dc81692c16acac8cc3bcbe61e3c9c83ea96d4c7754daf5d66648451a7410_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:ffa3314f7512bdb6a25194d0513b2abe082ad047f4b7d20febdeff824e8291f0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:05138a83f19422062e9d0dfc15a092751cd166084e17f1182099d4c409ffe7a3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:427e9299f62c57b9e3061a24d072b92557bebcae7744ef52b2d9529a316c580f_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ddcf00776b91e4bf00b9cfe49e0636a8c25d197d60cc510eb6a71ec78619d5a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3c7e6a6245aa861de676a2e55beadc373a0c510249943de1edf17b3ac230426_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:079f8528e3ec4fc9ec08197e32ff35ae0a0c03e6bdd622e1f6d232c0c5305288_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:1663e207dad54480d49177ea31f5595f681e1c5d9e5bd8b589514954798906c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:156bd713ae58c8bbd73d0ceb667dad295e617bef01afc0ed26a4d0d8a69bb203_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7864401ddeb26ed89d65ffa18f24cca0cbf440c779d42ef18388801f7f36165d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:7c92ec345e95d83cea152d7b0082f916b6aa7d0c5c2a37e69ea0c349cbcb1b61_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:f4c670524c3cbe2dedec46f323d241a513740d1133436e1bb11f1241f8c6b291_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:7639e55a39d5cc32c531edfc2e7dc63634950141512e705a7c557c5e7811959b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8549eb55123e9996ca8447034f49649bb37a49a37b46c69981ba450f30ebe7cd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:02756b68014d85cc80a723fb3aae6adac4923c877ad559757efa4414c01d9490_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:05ec0f620276fc033b61a88cfbfd8db49783d85e71a63e868fc9afb14dd06a7b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:28c7b0657cd52cbe350028579671b680f9c1bcbbd9dee4aba183703701c99ecc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:396104ffcb65078d2ada36b9ed7add53e3e5c1eaba06426855e0c0043a39773e_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:4418db3a15c2dd1b084e64f06152ba039ca9d68abee9556cf5d6ed96c3b37a0f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:543275d2c8c69a588c0b66e7953a8e31a96b5c443c90f0327a96382df491a0ee_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:77c05373442d20670634b297b9185233212f10ed5105db02dee9b9c7ea72d1f1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:cd9fa467bab0385a6fdeb0fd8129b9b7dc11a7fe8cb6e5eb9e4d33f3263e19c3_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:826a030bfe51515cc56120a0d926a456755b24f6ff46f280aab7762ad4307c8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:938000ad0c45c4a73a50f31b16e8ef74a3ca87aa699e25101f1c1a3e97217bf0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a088b7ed9808f2b2821b8783698ae89db44daa214b216a59860e8196dd7a1b32_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:e2c908e9da2df7a9dd83e23ed6bafcddbbadcb75bca214ecc1866b99ff56b90b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:066d67f7af6713563fae7ab7f3fd0959e407135b9c87a7f7e95657ead8ebae44_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:978603f413b4c912adba90af179a8f1bad8374a8b258ce545652480a9884c6f6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b06669dc4bac1790e9ae07460fb6f15c0f98a0c75b642be17f42e3f0686d7715_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f00ff861ebc79138c3cca6a1515260ff1edfc3116c3b431281a3539fcf7ffd34_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:0662c328171b93c7f02b83582c4de738236626748e6766ed34deae4ca712e5fc_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:955cf3fc016a49f9161697ee6d8356e1c2237266a03469bb553c1c034eddef73_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a87ce547f41f0516f683fb01be9ecf41cbf47b916996419f4f40b7f00d289a9f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:a8e281f4b80516e6981b0fe2bfeaee0f353bdc1aea32df0cb7caeccf4416c722_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:32a35145badbaae71316daf449cabc4e233a8f86b205b8ef80051f531fb0e367_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:4046a123314477512b75f4895ec9ab70fb7b60faea5542eb28070ce014661e8a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:423bcb2daf4329a30d3508b641eb1fde90a1462751c92c9bdaed2b426f2e8b6d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:71ef45f5577027348a34eeebe5acbf77170b0c20d231f8e66ac6c934c27b113f_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:58588029d4a0ef2d6c19d2a40709932aa0b54a47a6968f742a2e2a1a291c29c0_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8fe579f402f1b079c8fc411529082d836b9758f7e19a4b6fb33e715d1f09ce1d_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:9046444bbe4137c6837af02b664cca92a5578441fe93af12038d8c57175c095d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a7193da142d992b1471e91747ccfc658539b1c3faf7acbc5fb8b5631ff30d1e5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:e36dfe9df86c7042880fc0c5100788153c2d1038bc8120b9fddcbcdb776e0681_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fcd0a07b996501f84f6939a024a89773c76a9426d7d991bf172f4e6003f83092_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:3b53e4ee7fe6173c1e6cee84fad9aec7611afeee953cd431f182ff0eee58a333_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a300bab7eeafe8852fcc4975080f84aa6c472e2af9e0d568103dd7a9eb3a7541_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1727d7fcadf7ba154a5cd9de1b8436f58540760f3c3f914b3018ed28d27195b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:c2b29bb4fc93e8b45a647009c4d9cd4be2e93c7ccc9495fc05edf99e7347eeca_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:f3378a32724504b607b203b078da1c2bcb11b7de79df2450f6f5781c1e14f8af_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:10f95978c16762fe1d3d7f7dea660b36d196e4cdda1b47ff498024b03d8406fd_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1c5c23e8d979cb770cf07502b1a0b40601410940382f766c0565466689b83bdd_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:39ef308676b140ee55028fcd1d5cdfe16831c909f286eb2bf21b24ee64de3de5_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:94935079356cd7d01aea8607b9874953fde140aa90d72f75431918a5d1333a65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:246df506dfbe7ed1ab73793d04bc36ae2051e1db161412b9c45c082686455abe_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:46c2ba6831f42288f88f4a689e8df7abe2c0f0ad0834b9648f5145b18ef51efe_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6d8ad294bb5157cb1e4d3849aea0ba501eff746d88f6956723aee5da947073a5_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f9bd8723fddd8a0aaad5633af147f5026710df5856c66b519c62b48761d9bb89_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3664ae1eb9e178b228d90d0b709bd784bb93d34da29e77ff76a6d370fc4b5ea1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b7a0356117df47d5cd03f5644edb2c16103853b66d1c4a667227cfc99eea5b2a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b9e79ac6bebf963e5080631e1ea2ce72f56e51fb0a6c3f03eb99411b98e0de55_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f2421495d961329370696ec4ec8b87463d304e352c40f9f94ac68f1e67362d76_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:7e4bd212a0562eea182a23ab44c45da33a65b99155a77abbaefe06c0ab4330fa_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:af90751ad1cb4a1b7c468cd5494ea213b412fc982f824677dcc693203014a56e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cd33ce74ecbcc87b06f207a35eb566dbfe0ee4453e6fc82ed6d75a24585eac38_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:ea5cc848ccad709f5dc10b32c42666715971e9f9eb5395a5ff1802fb01eb295e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0733954da51d76f0c830fded03f5249eccdda4ccecd246dc60fb833ce3483b95_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:26d0ea838032896be83e65ca178c474fc907c5061bc18a854c1e5d8232d732ef_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:531cdd40079d7539fcf4ef96441acc74ce7778f74bd32ae3b3bbb3a0074cd77b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c36067ed475b1935c820c413ea999ac5af219f79e548f11ff8d4c5943ba5cf87_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:06b64afe5d3dca378139981437a865cd4fcae832e09cad870ad9ad5892399672_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0fc00d8f63b2a972074a8cf1998dd9a761535cfa6f9b5f1d57b7952239443022_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:3eefdb4f293685c8fa0b0a2ce0dd54e4d889878c3ccfdaf36baaef6b384ae0cd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8d71f599ef64266bcba053bd9adfa5c30cdaa9739a3b616f39f6155f12f3b298_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:222c16aead73ebacc7992d4e597243841f9168eec6dc887162c2cfa6100e7ac2_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:35fbdf8b8b9e02f2faf2165465cc1661b18cdcce05bc85576ba5f4b958d4fe26_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:8469dec200b17f181e2c92b569d771484a0cc45c95f573359b0182f43c662028_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:bbe3f967bbfde6d7673116cf018d1fb77e774edcde42c469fa453f9323eaedb1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:012f1c193d64e4bc261091ffe3d682dc280c185915d25496656fcf63bc477ffb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:2fcc24e4b05143491192b2b0c3d5c7351524d4492d366e59c802a7336996681f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5feb78341d28f23b236617d9d539f9f9766f370cdac57db30b5a497649a49e28_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ab9b4f0da554e6de11cc1a459a3f952de25a3ed110a185a72d8ae609bc14cbff_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6a51aa6928244d257be7bd926fb47d38ee205d27218b5e1f10cc5e92d94502b2_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:85aaa5e37b84f0725517b8b8409f87a1f0ed37af4a43c62df32195aab0aba83c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:afc1547b05d86a81c9bfa0ddf54768262975b44a598b6740ac914604a8299254_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b036ef410b0a50b49b93685238e16b8f14a9abb8dc2712333f7cc6d2099fd60d_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0044f50366884dbac8963833a0fd0d55127726da637d87afa9c68d1f6a015108_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:058ca37118941e513498142b6123051cdcb639fc7907a21d4950a4e57a576649_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:26e603e7608aa4cc7754ba43dd6c17df84adf23e52ef51e34cf72d1af8537e5c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:28a9c4c43eb125a37d5669e5b9e6abeab7a85032e69d4bf43d490eec7216e182_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18cdfd3c8af477faee7d8823d7a029db7217d5b3d1b50f768ded3c86aecd2696_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:43d6d9b4e1d2044c4f88e1639408c5fe73dc7580a93c17782471ce2df7c6d457_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cd57c16ed307d483feff6e00de509930c88c8846dc3fa5b181fb663ea1a2d5cf_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d3e8e8cc081253041e5d6053e733ede328f4a95e2b49e1eb926204dcf7311d93_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2f4b5ef2618b9ec11026d0a9ddcae44716c59093fc01224a8e6d5708f112b717_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:665518f740d19efd5f30f36a0db0ef169a1c3998a096d556a07fced3aac3900b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7fa248d54ed74fc70e2e953b87482d5f3114cb39e82277b639a64fa5a594b4f4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bb53ea687cafc423ce8d234b48c7df5f1e0ae361e6d74aaa5eac5d1141dfc543_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:55426d24a2b80667b9d169cd1d314197a40ec8000240c4bde5e4d48b2011a377_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c852465f9a9e1a262a123d864c2e724b6254d77bd34b54e78c79849a93ee4bba_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:df5b8caa81da1e3107ccf4d102f7e9f74cd48a99844a28faa2d278c11a493451_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e84cb9bdc98f8816c14b08678cb1147266c3210c3641fe675d5461125cb2bd7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:157310212cde22b2578f795453b21a3c5d5d1724bba64e46f6205f2fa03ef866_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:25871a6847f0ca958bda3d04c63fda55a3659e0fcb9e210eab60c871497abeca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7f39fd0983b4a0ddedaadd8fbf260798a0563bca3ac0b0f2bff7bac4c10fae25_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f6a0cabc356785bd6d3c8b11e75c1fe9671e725afd24c1289449e870b29b26d8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:145e5f772514553dd4b304fe1359ca338b5f97bce40463b4705eafb064abaa6a_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5a3bf2a445b2a47440054b58411a4afe3c75c0b5ac5099ebd978f99755cea013_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7cc4bcacb74c69193cd1241844063672150a4aac886e01c85eb7e374496b332d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:988e804cde8164a3ab919b4148db25c33902e9a4b0a960c8d5652857121948ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:4a394aa834e9df765f70af820df87bcd026aefcfdb6f1e7b6da3e7cdd6731c55_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:bc91818198ea991642d9a8a0f5c199ef6663fe70ff4e7cdf6810bb91e5b11d4a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0ef6ab57f8680b3824f98bfe8b8fa70b630d789b73420eb5bd9025ae9fe9dcde_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:c26491385584f58eb40826ee15584d353487e2d50949f08c417e12cdb67b24ac_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cc6aa1f5b2d7d57a5ee143e4ef38a8d75a0e47a48eedd4d912666d2ef115d977_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:fb0aea8a0198b09e5722944c715ed0b13f7267f38694dcd31e6195d48a09a4ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:1d59cc0da4ea182c2ebfa3353fcf46404ffcd69d2db06ad6b4c96e6d4f244c00_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d00cdeb280459ef2c8f51f87d330234e0cbc872a83472732113bacbdcebb75b8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:df9d7bc14043319977637f9652e1c47a9ba657530775d76dc0b8548a152599cc_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fac0b558c1d496db3e356824c276350128da94695354e9ecfa22fe5f44444f8c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4f0d677159579ee694c103d5719f4c7190c2043edf08e9dfd516f3b1431380d4_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:502299978721dc3f905d8b2e089e839c68d6068a6b2e80a6ebf390c41f1c77db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:70183174ccf77bf0fa0abf7c887106033f701a68fe2db91e2e17924c15f8ea61_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a8f2d43933f75b09d0ba39a43827b0811ec44e1cd45677b02bcf69aac54a5df1_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:11584fa6f2795c0df69ce4bd84ec09ab62b294e6a83ee9d7f37c20e1e13687a7_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1f3fca67e22dab56a9c567e7bc8c7e2e65ba07697e575c15e8223286d1cb45a6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:30af1a41a6251bbeb339780d13bd2fcbb2ccf65c34de95f2f1d93cfaac4c1a8a_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ce563872bf14e2f673cf0c6342529787bb2f1b018b27187aaa594bf01ac4e8db_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:23c8d587fbcf092f8da5c2f96d731ea83e4fb1307f2f0dae55431902bb4c635c_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43cde93df6ee67e685494b85af0c4ba872ee3d2095226a45ec668ef464745996_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:49d2f2fdf2e274792fe837068325c26dfc1caf8f7007896da5b0ce7a8619f218_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:adc1e7cd6af12f50fc0e3891684fab61e8114278666b9b66b362b13452035bdf_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:062b95dbcdcb6582fe3000248b0b98cbfa779d8facc4adec2306176f19486037_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57427c361514a7b3babce472d2c99b562693d8980bd63a284a8cc5c5018e9329_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7bdf53dc7f7b34ada24fdc729362a08ac818fad5a536e767c713d72e26b52965_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:96033533201ce8046ca74e2c4fe59cc5d1f030ca6ca388b6be1f3d03286e7699_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:abaf5de11becbaad1641a9577eeb987b221cfc2a2e29700f95683e635d2b820f_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ca25d6c28329909af519e3ba4e84db856acec381b9199be01faa13410c47747d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e7d7651ad2572a12d9ca5b3e0a7b0d58b16a67c0555893c456b522e17a2899b2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f67acaad4660a3bb8cafba9764f53f09331f1b1935f248ff4422d836a39950f9_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f4dd6d5528ee4e063d7ae38f258f32ccbf1da0d56dca8eacb5b074ae65bb28d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7104dcaa45fb2799219a5d7144acda1530e30498bdd993b1029054497a98ea50_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:9362b119821c2708b17d3122a7f880e564d3bc02dae54a9e34433b316d9075a0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:d83c399be92d35e7c4bb34e00aaa7092f4a95310ab7df780804b7cccf52f2e75_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:11da4f802805ec5ebbfb14eae6779797c04009c0d0d0bfa553872bb0092c8bca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3702a78617f644b1fbf076c92bbdcea166f9c4c4e4367cd0961322c4fe9ada88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:72d47789cc4aaead8e247d66eaae2c466eccd55655abf9e14b21a765e6c1a4ab_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:79c174ce37bbcf06d9a866b74b63f7738c09f40a8d27f6f3ade179cb47030f63_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:19f04e3f96e722d16948ead37ceca87c5c6602b3d447a7e65f9d3a92ea5647c6_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:254288a3398b6898842827a6cc724645dc8ecff90e2c452c7150410716e6b4ad_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:52a52322f1412d107ea39fb495f79378d94b9e877b0b5ff305fd9b5392c37d36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d3b5fd725099825d3cc9c406499860c017b565e17df19c70559d69bcad43d763_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:1f06ba48675521df8823da28b4274041a7f4568fc86dd5f23ffa1b06f3ea8578_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:b7c6c42c06cb07c0803142e115fa1e313039e1059710e692cbca7829017d40ac_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:df5c9208bd7f3fd4fb1258e92bb08208433c2b674733b9df9daf3274d45c86d0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e6175bd28927fc3a892e3d4806270215abb7ccee5e0ca3ac4caab7d7c56816e6_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:0f8740a9bd858522babcd18ddca7c301651102d992afb795b01f54256738419e_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3cf28ac6528ba8041510bdf5931e3b1b4255a7344763d641e3cdfab63795c1ca_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:61f0183563c3b4645137c68e972a9826c24d2ff21fe46d5adc9b432bceecd243_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:704774cfc6045f26d42205ff4f1df5f995254638d2400d02c39779ecc5c8858a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2f732d58a0b9ca2f11597e4feca4ddfaada16208853402113c1c134683cdbdb7_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:954a8faf1b5f29083ff85a8536eb2da37dc1accc04035bfb0459b057cf8bab76_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:c29f646b5c64c89d8946dd54bd2f0b0697bc1919e7db260a57b5b02f5fa70840_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f87a8e5fb20da22604121ae16d10b8716f1532748b68e95dcd2a78fe101db8c6_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7d46f9aac127d1830987491beb5ca82d1666dd6233b1abbcf6b48199fd5e23e1_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:acef87d690b954ad5ca772d175343b56544c9d83a2ba5a3e674577880c412d99_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b0e21a4ad054307effae29e5974856eaea662c96cbde8a5d5a6e19b70e510537_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:ea70a80449517a6542a91f3cd62286a9d43f51d1c95ea1519def0e18d11e91de_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5602a6e8f862d621c2a77264a1dc7a1bc189395b8783a4715c54abbb17ac3bcb_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7b339bfe1ba5dc83b634d85c934fa92734a9feb8a80f9be9e247eb6ace77ffc7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:9d6433feb9bf3df15531fe56ce7b5a255b54fbcb2d8df17cdefce66b890d7c6b_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c2f6595862270ca652bbc007b607c0e53368ee9a7b46f28d9241240542c985d7_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:05d9c2f4c91de10e6d763023898653a94d8c4f92187a6e08b70c71459b7253a5_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:31ffd9035f95491a78bb6c7bfd7ccb5e31d20435a271f65e9beba58752abdf3f_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6dcec409b8ef6f31f39bbfda6852daac505d83e76eddc7ff538969c464544060_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:d0f0dc3e9ed18eb480caaa782b68b45b739fc57bb95a5731c16382a43c8eb3a6_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:13bbd61291c69b2a9383f5637d54bb098eb5d29493696f3d029fb93a684dd2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:76e5692c01d8c29a778cb784628972027c4f478f229812364658134b90de1940_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:7c3552a7ae899ee257c10fa37c4e999e86640a9d32d1beda882833ba27f0e19c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e7b603392c37181bb423ea3049d6c60388be835e7fd7fe0cfdeec5c4d99b3225_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:47e843e13619f5ba77105043323cfffba75953e9a744e0f70dfdc6b1fb75e3ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:56b134dd4363657ffe13e40e0eedc1c8b2f66344f4a7f48c677785273f54d964_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7dee0cdeb159271d5c8764204415a010bdabe2244ea68ccc1ae617ab684f7046_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d0b2a8b76c63ae05fee76f1f3097f44b44e995a3eec53c1b91f30a9323435360_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8886f144ecb570a0ac13b5ad2b850a2083c0884217d34875a6936b045de20b23_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:da6bdffd48a51e4594a3c83622a2db0316c2e5f93ba663e69f11ec6a033cce01_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e445ef3153381a193861cc69c1f9df15def161d266a63ed505a991ca9e1a8163_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:ef32dac94143109646c548bdeb8cdf0e34fd0098343caca02fdeaea2b28669a0_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:320bcfab175e26450a9c1af46b25cbed45d9b121e47678c483c3fd0cfa5ce965_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:f94610e6e82b38f154e2150a0053fb1501193974897c61548634647260f92971_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:39d783db296dccff2f13ddb93e4d49e27a2ea9aea6daa16aee33b680b7487f83_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:e803367f16d1730c3580aea87f4294ba44cfeaed395868c14e977c7e70a443ba_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:4c276b6cc59e31a809d243ed481e2401717f8be42c95de2aaffbf3354107ec20_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:eac37795cd6e1f2a37a4d8fd6caa40c226eead516825b2bacf08255f9422c3cc_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5c41e650f99fdc09f2edb41caf1eaf99316c8ab06ab81911e7a94471da048ef0_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:7407f828c12c31f2bd4be001cd0f6c3194d63cf03dd33e14b15cb456b304a7aa_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:30b720e63a57af01292caf2b3d4137438cf4581343713b607b9460a0c6bfcb6b_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:8266ee096e7bf996477148f5db4eac65cda16f329bd489c35e4881d1c49332d3_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c66e38aba9c32940d88019c8169e2616c1b0b492d3ce0ad554cf4f68b3d5cb65_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:dec985340357e16f7cfba51c5dee486e830d1a1b1da7ede87b5fae08a5d9eec8_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:184f088254dd712a9d589278f4915b9b53d14f94ffc22262db75a99308fbf384_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:266b32816b675c27058810ab2488d3fcfdb61808be285d13551681ddeb34dc56_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:393b2bf205a1ea6e0f0b91cd6009fd7bc00b4811d62f927d0bbff0d64592f9f1_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:792fa1e650938d75e8a7eb73dd864303ea39ba1b5b35016653e2fec5d0d86677_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1a81b8db89acfb65fbff3304394484fd66c3ce5e7eb3c52f2b55d577157912a4_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:255a28ee4a93ebf034757db246c412c5fdc00c8a37669de9fe98d686c00c55b9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:38b8c89b04e5a85ae6b8a1ad2fbeb1534664b567387adddc1d8694b772568bff_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5d00dce98c742b92c9b434b4423c3e137fbce2011989b0b681ebb22d5ea6b2af_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:40fb79005ecf5f6841d28bd8b1585c1e8f8afea99b4c11eac9eb10d4976e7f10_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4ddf591b56700042b657610f8772f8dfb5c201138844d900111ecf7b44f1dc1e_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:4f8c7daa3b2944ef726ae048b6f5406d5a4cb501d429b54955548c1d36a6fd88_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:779c1355323d06aeb756d542fc45953d1db64dd9143c014b5b0789f4718718dd_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0c8fdffb1df3903ad168f71d7c8394fa2c3d0608425592b9f0601a3081bbfc53_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:65ceb152a8ae4f690e56f7b027b9466e2c590d5b22c3d0dc12beefa6c6038ced_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:a8a95eef0e4a91c461a96d46bcc7e4370d2592b5149f0bdf0019f2d670ff070b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ce0972ab34ad829e7fc189b4a27be998e63c24fd4a3187f9c7a504e1a9c159ae_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:2ff39450ad07eafbe84544302c295bb1b483c87dea7e42673c39978ff72e96a8_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:311ccfec52f20c8f2523ac4e56672ad138674bf3c5776c6a125909c1d928072c_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:81140874829fad1e02d42fb2f8f3a6e215d26bb82d9d310c1d8a86b9dbfead37_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:860bf068d2b72beceb44a6d1295d896772d2b736032a1ce20c277b15b6d89cca_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3773b213f54a575cf208243b891a64d2678c353075b2150a410b3d954d7124dd_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5b3d913f1406cb1ef017064bd842212f1ef8a07f511f56787eab3b8cdbc27d7a_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a7f40ced20b44f7573fe5b454106846817f315cf8f4fc437b74a5586b4d89e4c_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c8ce38f3de957e5a3f49082b65406e7497ad806b8112c1556e9a35fcb4f0cdc5_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:30e6ffb8aa133467a29e91fcf454f43aefdd236a55352af6f5593b20afda0745_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:75333c805c72e6a667b7eb5dc4c68bb51892c78b62459ca4d07fe202a7079009_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8a77fa59238e6aa589bcd8261c889b99b29afd9991ecbd0b130880a22d1eb36_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dd887c9504ec089ed9bd77fb515deaae49e87fcd619efc3a27c52e31a5fb7626_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:32d7085fc32d0920d732bb5c204318d4876b651d6b688a6032a4c56c3c463114_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3918afb4d36bb682254147b32f84f00b746a9ff27441ab9a55e5b4887478371b_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7ef563ba89f1bf492d427b1883c8758c7c135b172ea726968352adcc042e9543_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d820e3b93a012fef63405a99ccaefe43980ca5671b2ef3db5b131d6e08f95a29_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:56e17eba20a8db33c045155802b1e63d577da9f8b2741881e46f5bb89a9872ee_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5cca52fe65ed806f0147b3b31bb71903ba373f599d5fca40c34b8a08b095ed97_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8e612347d951198096b70bd3b30a552e28e98f1e163c0f779f6c1d0a967d5444_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b80c38e27bb935b1180dd738a9c66e089a1442783a6f8ab2b9037e13e55633da_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:14812dadd2b9826aaf8f0d961f8a9c0130338f8dd39d8b6655f7b15c14c04f14_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3b4e37ead2a6b9ff88058277954ef2e2769fe150ed2cfbe13391b21452abc49d_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:53405884b5e2f0029e11362ac6a83a866a46592283fb3ce61b8fee6b27a55be2_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8f3ed84dda21b71065d756e651a717b90e85d964fb1291a2843dd6fdcafea877_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:054e92b85b9062b2b3ce53a238768ffc749ead0ab402bfaa8440ded34b674c12_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbc28b73ff8b91894d8710114e4e3bd273c64ed75eed35ef3850bbd889790141_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d830674df4cf55a59b7557df0375f2733a94935050cd5732533a2d8831f2a2fa_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e068117ca5415745639c0ce764a780b41c2d9a374f64317bc3edfb811ddad356_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:d5fc36d6f1b8bab484175aef6df171621372a934cab057a53cc6a83c6008def8_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:2b4b526dbfc7bf2b3c7087f36b9dfdb5311c870efe016f7ea68b9cfc842b64be_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:5a5a40429720d6917c49cb16a31de7a3c0c20be43757b8dcd007e36ca36b97c7_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:25482546a57ce586f86f1dc931fd6f3b5cde6b6d3ed646c1d43fa0d6a7edb94c_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:02b867ac6d6c015edf0ef454a28ba0a9f143d5dae1926c4ec293642c5ffd0caa_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:331c01876d221e4d672b684ce35202abc29653a52754d5e7fcfe80b39f3e55f4_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0af768a2cae503220a83c1c08af0be6e61e6c6019c04861077ad68d034910c4a_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:2751145debf6034e14fd07494f7c1a92ce02c39fbc1575a637a08b885aa53db9_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9c67e0571035c1464a2e1f0dabf3351278ac5d8ac3c717b3500d46f54f2cb90d_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ceb47873748ebf5aefcc55a04c48ad8e8bcfe20c7f08ee25c1041802c101cc3_ppc64le",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:0aa4c59c8254ee0bcf633e5c2d9f40d8b9738dbdd923ed3e3956c84b6724c2df_amd64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36890b3930b2955ece95907638a3d2800b5d7fd10475178afee331ceea752e03_s390x",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5a6383657f8308786cccd926a4f34123ffb41b7d6fd6c0e9788585e47f1035df_arm64",
"Red Hat OpenShift Container Platform 4.17:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7d97035a80eaa15480b884e519dc9696a2620589462d74ad093e74605116df31_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "github.com/sirupsen/logrus: github.com/sirupsen/logrus: Denial-of-Service due to large single-line payload"
}
]
}
RHSA-2026:2681
Vulnerability from csaf_redhat - Published: 2026-02-12 17:29 - Updated: 2026-06-14 15:11A flaw was found in the encoding/gob package of the Golang standard library. Calling Decoder.Decoding, a message that contains deeply nested structures, can cause a panic due to stack exhaustion. This is a follow-up to CVE-2022-30635.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
Workaround
|
A flaw was found in the x/crypto/ssh go library. Applications and libraries that misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass. For example, an attacker may send public keys A and B and authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B, for which the attacker does not control the private key. The misuse of ServerConfig.PublicKeyCallback may cause an authorization bypass.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
Workaround
|
A flaw was found in golang.org/x/net/html. This flaw allows an attacker to craft input to the parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This issue can cause a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
Workaround
|
A flaw was found in runc. This flaw exploits an issue with how masked paths are implementedin runc. When masking files, runc will bind-mount the container's /dev/null inode on top of the file. However, if an attacker can replace /dev/null with a symlink to some other procfs file, runc will instead bind-mount the symlink target read-write.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Workaround
|
A flaw was found in runc. This attack is a more sophisticated variant of CVE-2019-16884, which was a flaw that allowed an attacker to trick runc into writing the LSM process labels for a container process into a dummy tmpfs file and thus not apply the correct LSM labels to the container process. The mitigation applied for CVE-2019-16884 was fairly limited and effectively only caused runc to verify that when we write LSM labels that those labels are actual procfs files.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
Workaround
|
A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Workaround
|
A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
A flaw was found in auth0/node-jws. This vulnerability allows improper signature verification via using the HS256 (Hash-based Message Authentication Code using SHA-256) algorithm under specific conditions, where applications use the jws.createVerify() function for HMAC (Keyed-Hash Message Authentication Code) algorithms and user-provided data from the JSON (JavaScript Object Notation) Web Signature protected header or payload in HMAC secret lookup routines.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
Workaround
|
A flaw was found in urllib3 Python library that could lead to a Denial of Service condition. A remote, malicious server can exploit this flaw by responding to a client request with an HTTP message that uses an excessive number of chained compression algorithms. This unlimited decompression chain causes the client system to consume a virtually unbounded amount of CPU resources and memory. The high resource usage leads to service disruption, making the application unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
A decompression handling flaw has been discovered in urllib3. When streaming a compressed response, urllib3 can perform decoding or decompression based on the HTTP Content-Encoding header (e.g., gzip, deflate, br, or zstd). The library must read compressed data from the network and decompress it until the requested chunk size is met. Any resulting decompressed data that exceeds the requested amount is held in an internal buffer for the next read operation. The decompression logic could cause urllib3 to fully decode a small amount of highly compressed data in a single operation. This can result in excessive resource consumption (high CPU usage and massive memory allocation for the decompressed data; CWE-409) on the client side, even if the application only requested a small chunk of data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
Workaround
|
urllib3 is an HTTP client library for Python. urllib3's streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. Starting in version 1.22 and prior to version 2.6.3, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client. Applications and libraries are affected when they stream content from untrusted sources by setting `preload_content=False` when they do not disable redirects. Users should upgrade to at least urllib3 v2.6.3, in which the library does not decode content of redirect responses when `preload_content=False`. If upgrading is not immediately possible, disable redirects by setting `redirect=False` for requests to untrusted source.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
A path traversal flaw has been discovered in the python wheel too. The unpack function is vulnerable to file permission modification through mishandling of file permissions after extraction. The logic blindly trusts the filename from the archive header for the chmod operation, even though the extraction process itself might have sanitized the path. Attackers can craft a malicious wheel file that, when unpacked, changes the permissions of critical system files (e.g., /etc/passwd, SSH keys, config files), allowing for Privilege Escalation or arbitrary code execution by modifying now-writable scripts.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat Quay 3.16.2 is now available with bug fixes.",
"title": "Topic"
},
{
"category": "general",
"text": "Quay 3.16.2",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2681",
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2024-34156",
"url": "https://access.redhat.com/security/cve/CVE-2024-34156"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2024-45337",
"url": "https://access.redhat.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2024-45338",
"url": "https://access.redhat.com/security/cve/CVE-2024-45338"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-31133",
"url": "https://access.redhat.com/security/cve/CVE-2025-31133"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-52881",
"url": "https://access.redhat.com/security/cve/CVE-2025-52881"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61729",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-65945",
"url": "https://access.redhat.com/security/cve/CVE-2025-65945"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66418",
"url": "https://access.redhat.com/security/cve/CVE-2025-66418"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66471",
"url": "https://access.redhat.com/security/cve/CVE-2025-66471"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-21441",
"url": "https://access.redhat.com/security/cve/CVE-2026-21441"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-24049",
"url": "https://access.redhat.com/security/cve/CVE-2026-24049"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2681.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Quay 3.16.2",
"tracking": {
"current_release_date": "2026-06-14T15:11:37+00:00",
"generator": {
"date": "2026-06-14T15:11:37+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:2681",
"initial_release_date": "2026-02-12T17:29:21+00:00",
"revision_history": [
{
"date": "2026-02-12T17:29:21+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-16T18:38:34+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:11:37+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Quay 3.16",
"product": {
"name": "Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:quay:3.16::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Quay"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-bundle@sha256%3A77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel9@sha256%3A1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770762347"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-bundle@sha256%3Adda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770817752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel9@sha256%3A5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3A6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770230686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel9@sha256%3A8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"product_id": "registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel9@sha256%3A9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-bundle@sha256%3Afa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770841176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel9@sha256%3A64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"product_id": "registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel9@sha256%3A35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770836901"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel9@sha256%3Ae3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1770762347"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel9@sha256%3Ac96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"product_id": "registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel9@sha256%3A76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"product": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"product_id": "registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel9@sha256%3Aafe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"product_id": "registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel9@sha256%3A8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le",
"product_id": "registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel9@sha256%3A9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1770836901"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel9@sha256%3A9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1770762347"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel9@sha256%3A3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"product_id": "registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel9@sha256%3A146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"product": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"product_id": "registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel9@sha256%3Abf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"product_id": "registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel9@sha256%3Abbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1770816415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"product_id": "registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel9@sha256%3A45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1770836901"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"product_id": "registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel9@sha256%3A96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770836901"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64 as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le"
},
"product_reference": "registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x"
},
"product_reference": "registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64 as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64 as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64 as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64 as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64 as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64 as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64 as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64 as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64 as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64 as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"relates_to_product_reference": "Red Hat Quay 3.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le as a component of Red Hat Quay 3.16",
"product_id": "Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.16"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-34156",
"cwe": {
"id": "CWE-674",
"name": "Uncontrolled Recursion"
},
"discovery_date": "2024-09-06T21:20:09.377905+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2310528"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the encoding/gob package of the Golang standard library. Calling Decoder.Decoding, a message that contains deeply nested structures, can cause a panic due to stack exhaustion. This is a follow-up to CVE-2022-30635.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "encoding/gob: golang: Calling Decoder.Decode on a message which contains deeply nested structures can cause a panic due to stack exhaustion",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability in Go\u0027s `encoding/gob` package is of high severity because it exposes applications to potential Denial of Service (DoS) attacks through stack exhaustion. Since `gob` relies on recursive function calls to decode nested structures, an attacker could exploit this by sending crafted messages with excessively deep nesting, causing the application to panic due to stack overflow. This risk is particularly important in scenarios where untrusted or external input is processed, as it can lead to system unavailability or crashes, undermining the reliability and availability of services.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2024-34156"
},
{
"category": "external",
"summary": "RHBZ#2310528",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2310528"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2024-34156",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-34156"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-34156",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2024-34156"
},
{
"category": "external",
"summary": "https://go.dev/cl/611239",
"url": "https://go.dev/cl/611239"
},
{
"category": "external",
"summary": "https://go.dev/issue/69139",
"url": "https://go.dev/issue/69139"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-dev/c/S9POB9NCTdk",
"url": "https://groups.google.com/g/golang-dev/c/S9POB9NCTdk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2024-3106",
"url": "https://pkg.go.dev/vuln/GO-2024-3106"
}
],
"release_date": "2024-09-06T21:15:12.020000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "encoding/gob: golang: Calling Decoder.Decode on a message which contains deeply nested structures can cause a panic due to stack exhaustion"
},
{
"cve": "CVE-2024-45337",
"cwe": {
"id": "CWE-285",
"name": "Improper Authorization"
},
"discovery_date": "2024-12-11T19:00:54.247490+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2331720"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the x/crypto/ssh go library. Applications and libraries that misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass. For example, an attacker may send public keys A and B and authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B, for which the attacker does not control the private key. The misuse of ServerConfig.PublicKeyCallback may cause an authorization bypass.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang.org/x/crypto/ssh: Misuse of ServerConfig.PublicKeyCallback may cause authorization bypass in golang.org/x/crypto",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is classified as important rather than critical because it does not directly enable unauthorized access but rather introduces a risk of authorization bypass if the application or library misuses the PublicKeyCallback API. The vulnerability relies on incorrect assumptions made by the application when handling the sequence or state of keys provided during SSH authentication. Properly implemented systems that use the Permissions field or avoid relying on external state remain unaffected. Additionally, the vulnerability does not allow direct exploitation to gain control over a system without the presence of insecure logic in the application\u0027s handling of authentication attempts.\n\n\nRed Hat Enterprise Linux(RHEL) 8 \u0026 9 and Red Hat Openshift marked as not affected as it was determined that the problem function `ServerConfig.PublicKeyCallback`, as noted in the CVE-2024-45337 issue, is not called by Podman, Buildah, containers-common, or the gvisor-tap-vsock projects.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "RHBZ#2331720",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2331720"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2024-45337",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-45337"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-45337",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2024-45337"
},
{
"category": "external",
"summary": "https://github.com/golang/crypto/commit/b4f1988a35dee11ec3e05d6bf3e90b695fbd8909",
"url": "https://github.com/golang/crypto/commit/b4f1988a35dee11ec3e05d6bf3e90b695fbd8909"
},
{
"category": "external",
"summary": "https://go.dev/cl/635315",
"url": "https://go.dev/cl/635315"
},
{
"category": "external",
"summary": "https://go.dev/issue/70779",
"url": "https://go.dev/issue/70779"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/-nPEi39gI4Q/m/cGVPJCqdAQAJ",
"url": "https://groups.google.com/g/golang-announce/c/-nPEi39gI4Q/m/cGVPJCqdAQAJ"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2024-3321",
"url": "https://pkg.go.dev/vuln/GO-2024-3321"
}
],
"release_date": "2024-12-11T18:55:58.506000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang.org/x/crypto/ssh: Misuse of ServerConfig.PublicKeyCallback may cause authorization bypass in golang.org/x/crypto"
},
{
"cve": "CVE-2024-45338",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2024-12-18T21:00:59.938173+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2333122"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang.org/x/net/html. This flaw allows an attacker to craft input to the parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This issue can cause a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang.org/x/net/html: Non-linear parsing of case-insensitive content in golang.org/x/net/html",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated as an Important severity because an attacker can craft malicious input that causes the parsing functions to process data non-linearly, resulting in significant delays which leads to a denial of service by exhausting system resources.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2024-45338"
},
{
"category": "external",
"summary": "RHBZ#2333122",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2333122"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2024-45338",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-45338"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-45338",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2024-45338"
},
{
"category": "external",
"summary": "https://go.dev/cl/637536",
"url": "https://go.dev/cl/637536"
},
{
"category": "external",
"summary": "https://go.dev/issue/70906",
"url": "https://go.dev/issue/70906"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/wSCRmFnNmPA/m/Lvcd0mRMAwAJ",
"url": "https://groups.google.com/g/golang-announce/c/wSCRmFnNmPA/m/Lvcd0mRMAwAJ"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2024-3333",
"url": "https://pkg.go.dev/vuln/GO-2024-3333"
}
],
"release_date": "2024-12-18T20:38:22.660000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang.org/x/net/html: Non-linear parsing of case-insensitive content in golang.org/x/net/html"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-31133",
"cwe": {
"id": "CWE-59",
"name": "Improper Link Resolution Before File Access (\u0027Link Following\u0027)"
},
"discovery_date": "2025-10-17T14:17:18.235000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2404705"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in runc. This flaw exploits an issue with how masked paths are implementedin runc. When masking files, runc will bind-mount the container\u0027s /dev/null inode on top of the file. However, if an attacker can replace /dev/null with a symlink to some other procfs file, runc will instead bind-mount the symlink target read-write.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "runc: container escape via \u0027masked path\u0027 abuse due to mount race conditions",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat considers this as an Important flaw since the impact is limited to local attack with minimal privileges in order to jeopardize the environment.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-31133"
},
{
"category": "external",
"summary": "RHBZ#2404705",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2404705"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-31133",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-31133"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-31133",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-31133"
},
{
"category": "external",
"summary": "https://github.com/opencontainers/runc/security/advisories/GHSA-9493-h29p-rfm2",
"url": "https://github.com/opencontainers/runc/security/advisories/GHSA-9493-h29p-rfm2"
}
],
"release_date": "2025-11-05T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
},
{
"category": "workaround",
"details": "Potential mitigations for this issue include:\n\n* Using user namespaces, with the host root user not mapped into the container\u0027s namespace. procfs file permissions are managed using Unix\nDAC and thus user namespaces stop a container process from being able to write to them.\n\n* Not running as a root user in the container (this includes disabling setuid binaries with noNewPrivileges). As above, procfs file permissions are managed using Unix DAC and thus non-root users cannot write to them.\n\n* Depending on the maskedPath configuration (the default configuratio nonly masks paths in /proc and /sys), using an AppArmor that blocks unexpectedwrites to any maskedPaths (as is the case with the defaultprofile used by Docker and Podman) will block attempts to exploit this issue. However, CVE-2025-52881 allows an attacker to bypass LSMlabels, and so this mitigation is not helpful when considered incombination with CVE-2025-52881.",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "runc: container escape via \u0027masked path\u0027 abuse due to mount race conditions"
},
{
"cve": "CVE-2025-52881",
"cwe": {
"id": "CWE-59",
"name": "Improper Link Resolution Before File Access (\u0027Link Following\u0027)"
},
"discovery_date": "2025-10-17T14:19:18.652000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2404715"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in runc. This attack is a more sophisticated variant of CVE-2019-16884, which was a flaw that allowed an attacker to trick runc into writing the LSM process labels for a container process into a dummy tmpfs file and thus not apply the correct LSM labels to the container process. The mitigation applied for CVE-2019-16884 was fairly limited and effectively only caused runc to verify that when we write LSM labels that those labels are actual procfs files.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "runc: opencontainers/selinux: container escape and denial of service due to arbitrary write gadgets and procfs write redirects",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat considers this as an Important flaw since the impact is limited to local attack with minimal privileges in order to jeopardize the environment.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-52881"
},
{
"category": "external",
"summary": "RHBZ#2404715",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2404715"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-52881",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-52881"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-52881",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-52881"
},
{
"category": "external",
"summary": "https://github.com/opencontainers/runc/security/advisories/GHSA-cgrx-mc8f-2prm",
"url": "https://github.com/opencontainers/runc/security/advisories/GHSA-cgrx-mc8f-2prm"
},
{
"category": "external",
"summary": "https://github.com/opencontainers/selinux/pull/237",
"url": "https://github.com/opencontainers/selinux/pull/237"
}
],
"release_date": "2025-11-05T09:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
},
{
"category": "workaround",
"details": "Potential mitigations for this issue include:\n\n* Using rootless containers, as doing so will block most of the inadvertent writes (runc would run with reduced privileges, making attempts to write to procfs files ineffective).\n* Based on our analysis, neither AppArmor or SELinux can protect against the full version of the redirected write attack. The container runtime is generally privileged enough to write to arbitrary procfs files, which is more than sufficient to cause a container breakout.",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "runc: opencontainers/selinux: container escape and denial of service due to arbitrary write gadgets and procfs write redirects"
},
{
"cve": "CVE-2025-61726",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:42.791305+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "RHBZ#2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61726",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61726"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://go.dev/cl/736712",
"url": "https://go.dev/cl/736712"
},
{
"category": "external",
"summary": "https://go.dev/issue/77101",
"url": "https://go.dev/issue/77101"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4341",
"url": "https://pkg.go.dev/vuln/GO-2026-4341"
}
],
"release_date": "2026-01-28T19:30:31.215000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"cve": "CVE-2025-65945",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2025-12-04T19:01:14.733682+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418904"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in auth0/node-jws. This vulnerability allows improper signature verification via using the HS256 (Hash-based Message Authentication Code using SHA-256) algorithm under specific conditions, where applications use the jws.createVerify() function for HMAC (Keyed-Hash Message Authentication Code) algorithms and user-provided data from the JSON (JavaScript Object Notation) Web Signature protected header or payload in HMAC secret lookup routines.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-jws: auth0/node-jws: Improper signature verification in HS256 algorithm",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-65945"
},
{
"category": "external",
"summary": "RHBZ#2418904",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418904"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-65945",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-65945"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-65945",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-65945"
},
{
"category": "external",
"summary": "https://github.com/auth0/node-jws/commit/34c45b2c04434f925b638de6a061de9339c0ea2e",
"url": "https://github.com/auth0/node-jws/commit/34c45b2c04434f925b638de6a061de9339c0ea2e"
},
{
"category": "external",
"summary": "https://github.com/auth0/node-jws/security/advisories/GHSA-869p-cjfg-cm3x",
"url": "https://github.com/auth0/node-jws/security/advisories/GHSA-869p-cjfg-cm3x"
}
],
"release_date": "2025-12-04T18:45:37.517000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-jws: auth0/node-jws: Improper signature verification in HS256 algorithm"
},
{
"cve": "CVE-2025-66418",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-05T17:01:20.277857+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419455"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in urllib3 Python library that could lead to a Denial of Service condition. A remote, malicious server can exploit this flaw by responding to a client request with an HTTP message that uses an excessive number of chained compression algorithms. This unlimited decompression chain causes the client system to consume a virtually unbounded amount of CPU resources and memory. The high resource usage leads to service disruption, making the application unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3: Unbounded decompression chain leads to resource exhaustion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66418"
},
{
"category": "external",
"summary": "RHBZ#2419455",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419455"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66418",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66418"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66418",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66418"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/24d7b67eac89f94e11003424bcf0d8f7b72222a8",
"url": "https://github.com/urllib3/urllib3/commit/24d7b67eac89f94e11003424bcf0d8f7b72222a8"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-gm62-xv2j-4w53",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-gm62-xv2j-4w53"
}
],
"release_date": "2025-12-05T16:02:15.271000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3: Unbounded decompression chain leads to resource exhaustion"
},
{
"cve": "CVE-2025-66471",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2025-12-05T17:02:21.597728+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419467"
}
],
"notes": [
{
"category": "description",
"text": "A decompression handling flaw has been discovered in urllib3. When streaming a compressed response, urllib3 can perform decoding or decompression based on the HTTP Content-Encoding header (e.g., gzip, deflate, br, or zstd). The library must read compressed data from the network and decompress it until the requested chunk size is met. Any resulting decompressed data that exceeds the requested amount is held in an internal buffer for the next read operation. The decompression logic could cause urllib3 to fully decode a small amount of highly compressed data in a single operation. This can result in excessive resource consumption (high CPU usage and massive memory allocation for the decompressed data; CWE-409) on the client side, even if the application only requested a small chunk of data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3 Streaming API improperly handles highly compressed data",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66471"
},
{
"category": "external",
"summary": "RHBZ#2419467",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419467"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66471",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66471"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66471",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66471"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/c19571de34c47de3a766541b041637ba5f716ed7",
"url": "https://github.com/urllib3/urllib3/commit/c19571de34c47de3a766541b041637ba5f716ed7"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-2xpw-w6gg-jr37",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-2xpw-w6gg-jr37"
}
],
"release_date": "2025-12-05T16:06:08.531000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 Streaming API improperly handles highly compressed data"
},
{
"cve": "CVE-2026-21441",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-01-07T23:01:59.422078+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2427726"
}
],
"notes": [
{
"category": "description",
"text": "urllib3 is an HTTP client library for Python. urllib3\u0027s streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. Starting in version 1.22 and prior to version 2.6.3, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client. Applications and libraries are affected when they stream content from untrusted sources by setting `preload_content=False` when they do not disable redirects. Users should upgrade to at least urllib3 v2.6.3, in which the library does not decode content of redirect responses when `preload_content=False`. If upgrading is not immediately possible, disable redirects by setting `redirect=False` for requests to untrusted source.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-21441"
},
{
"category": "external",
"summary": "RHBZ#2427726",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2427726"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-21441",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-21441"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-21441",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-21441"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/8864ac407bba8607950025e0979c4c69bc7abc7b",
"url": "https://github.com/urllib3/urllib3/commit/8864ac407bba8607950025e0979c4c69bc7abc7b"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99"
}
],
"release_date": "2026-01-07T22:09:01.936000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)"
},
{
"cve": "CVE-2026-24049",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-01-22T05:00:54.709179+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431959"
}
],
"notes": [
{
"category": "description",
"text": "A path traversal flaw has been discovered in the python wheel too. The unpack function is vulnerable to file permission modification through mishandling of file permissions after extraction. The logic blindly trusts the filename from the archive header for the chmod operation, even though the extraction process itself might have sanitized the path. Attackers can craft a malicious wheel file that, when unpacked, changes the permissions of critical system files (e.g., /etc/passwd, SSH keys, config files), allowing for Privilege Escalation or arbitrary code execution by modifying now-writable scripts.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "wheel: wheel: Privilege Escalation or Arbitrary Code Execution via malicious wheel file unpacking",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"known_not_affected": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-24049"
},
{
"category": "external",
"summary": "RHBZ#2431959",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431959"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-24049",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-24049"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-24049",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-24049"
},
{
"category": "external",
"summary": "https://github.com/pypa/wheel/commit/7a7d2de96b22a9adf9208afcc9547e1001569fef",
"url": "https://github.com/pypa/wheel/commit/7a7d2de96b22a9adf9208afcc9547e1001569fef"
},
{
"category": "external",
"summary": "https://github.com/pypa/wheel/releases/tag/0.46.2",
"url": "https://github.com/pypa/wheel/releases/tag/0.46.2"
},
{
"category": "external",
"summary": "https://github.com/pypa/wheel/security/advisories/GHSA-8rrh-rw8j-w5fx",
"url": "https://github.com/pypa/wheel/security/advisories/GHSA-8rrh-rw8j-w5fx"
}
],
"release_date": "2026-01-22T04:02:08.706000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-12T17:29:21+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2681"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:9784029a9d44a605dd28583416a7322c84189f4ee8e1bfa1be822d9260639d35_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:afe2137c2002e07f27b105b9db90030ca0f3347a038ab8418d257dabe7aefcd1_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/clair-rhel9@sha256:bf85b1b91bcbaea8cb0fc021d1f590ba3da4e0b2f8703cb449791ece5930d68c_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:dda553368706ad66215cc95b9b0306808531b0ed92b7dc7880cd2c95f8e0faed_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:3b252ccf24df27ea02a005d734eb501abf989b97b5d9e3ff57aa3b7e9633f165_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:5eb5f4aafd4fa3b53c6477424946f743bf5236ac434ddffa8a887a26a47e0fab_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-bridge-operator-rhel9@sha256:c96f472d44fff765175c4ee77ddb94bfac580105900f5e21274e959099bb97fa_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:6ac48cf92c9bb3d6eac9645ef203bcd2e475da36c182eed9ceadc3490e77a042_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:146699ff1cd4f8fdf19594ad5ce11dcafe9f8a266c94b104826c871b675f92e1_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:76354449e4e8b67bfbbfae10337b7d50fc657c909c8798fddb95dee408c3a9f2_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-builder-rhel9@sha256:8166562a51177faff8e520980153e1760a4863417a824ac15deb4314afcf1925_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:77387c33232561396c8826a393d17771bf88aaad90436c4e1e5aa36891840b16_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:1f03a49fec5f575e98c3f37ee081d5510a87172e72bc66627f935314d11a67c4_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:9969081b9da11f5a56d3ebf9ccd9428d9d59741c058abe4510e7ae3375a11519_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-container-security-operator-rhel9@sha256:e3ab3a505d3d08f7bad3c899f40727e2de524cd14c4c44b00f44b7b42f7ddd21_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-bundle@sha256:fa64c1d47fc10d14120ec9e7afc2e253620fdc28592f4d859350db4fbdf0fae2_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:64adacf9cccd05601f4a7b38a7cd55d55291583dc9d33e4cfd1e4fd426cd0936_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:8a1b8eedcb8e36ddfb1982062ad379c4f65f95260545d05d0cf10918427089d8_ppc64le",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-operator-rhel9@sha256:bbbd11d9b959ef12ae61a7975ffb08541797b0fad2d098781ec4543fd4ac2893_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:35e3dc29e64bae8c0b35d7884281397c58165a5b145676919452a02b9f56ee4c_amd64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:45de5fc478cb2734b672630c67ffee4e6b98954848b97ea9a1cc9903a53dbf8e_s390x",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:96588daff01f27db2ee335dcd957e9dec7f38a2c573e2968d9bc5835edc2957b_arm64",
"Red Hat Quay 3.16:registry.redhat.io/quay/quay-rhel9@sha256:9f58fc80db29fa44684c6e39bb2eda06e86ba34801d5e04468941ac8d0b754eb_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "wheel: wheel: Privilege Escalation or Arbitrary Code Execution via malicious wheel file unpacking"
}
]
}
RHSA-2026:2762
Vulnerability from csaf_redhat - Published: 2026-02-16 17:44 - Updated: 2026-06-14 15:11A flaw was found in the encoding/gob package of the Golang standard library. Calling Decoder.Decoding, a message that contains deeply nested structures, can cause a panic due to stack exhaustion. This is a follow-up to CVE-2022-30635.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
Workaround
|
A flaw was found in the x/crypto/ssh go library. Applications and libraries that misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass. For example, an attacker may send public keys A and B and authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B, for which the attacker does not control the private key. The misuse of ServerConfig.PublicKeyCallback may cause an authorization bypass.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
Workaround
|
A flaw was found in golang.org/x/net/html. This flaw allows an attacker to craft input to the parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This issue can cause a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
Workaround
|
A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
Workaround
|
A flaw was found in runc. This attack is a more sophisticated variant of CVE-2019-16884, which was a flaw that allowed an attacker to trick runc into writing the LSM process labels for a container process into a dummy tmpfs file and thus not apply the correct LSM labels to the container process. The mitigation applied for CVE-2019-16884 was fairly limited and effectively only caused runc to verify that when we write LSM labels that those labels are actual procfs files.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
Workaround
|
A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
A flaw was found in auth0/node-jws. This vulnerability allows improper signature verification via using the HS256 (Hash-based Message Authentication Code using SHA-256) algorithm under specific conditions, where applications use the jws.createVerify() function for HMAC (Keyed-Hash Message Authentication Code) algorithms and user-provided data from the JSON (JavaScript Object Notation) Web Signature protected header or payload in HMAC secret lookup routines.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
Workaround
|
An ASN.1 Denial of Service (Dos) vulnerability exists in the node-forge asn1.fromDer function within forge/lib/asn1.js. The ASN.1 DER parser implementation (_fromDer) recurses for every constructed ASN.1 value (SEQUENCE, SET, etc.) and lacks a guard limiting recursion depth. An attacker can craft a small DER blob containing a very large nesting depth of constructed TLVs which causes the Node.js V8 engine to exhaust its call stack and throw RangeError: Maximum call stack size exceeded, crashing or incapacitating the process handling the parse. This is a remote, low-cost Denial-of-Service against applications that parse untrusted ASN.1 objects.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
Workaround
|
A flaw was found in urllib3 Python library that could lead to a Denial of Service condition. A remote, malicious server can exploit this flaw by responding to a client request with an HTTP message that uses an excessive number of chained compression algorithms. This unlimited decompression chain causes the client system to consume a virtually unbounded amount of CPU resources and memory. The high resource usage leads to service disruption, making the application unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
A decompression handling flaw has been discovered in urllib3. When streaming a compressed response, urllib3 can perform decoding or decompression based on the HTTP Content-Encoding header (e.g., gzip, deflate, br, or zstd). The library must read compressed data from the network and decompress it until the requested chunk size is met. Any resulting decompressed data that exceeds the requested amount is held in an internal buffer for the next read operation. The decompression logic could cause urllib3 to fully decode a small amount of highly compressed data in a single operation. This can result in excessive resource consumption (high CPU usage and massive memory allocation for the decompressed data; CWE-409) on the client side, even if the application only requested a small chunk of data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
Workaround
|
A flaw was found in Fulcio, a free-to-use certificate authority. This vulnerability allows a denial of service (DoS) due to excessive memory allocation when processing a malicious OpenID Connect (OIDC) identity token containing numerous period characters.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
urllib3 is an HTTP client library for Python. urllib3's streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. Starting in version 1.22 and prior to version 2.6.3, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client. Applications and libraries are affected when they stream content from untrusted sources by setting `preload_content=False` when they do not disable redirects. Users should upgrade to at least urllib3 v2.6.3, in which the library does not decode content of redirect responses when `preload_content=False`. If upgrading is not immediately possible, disable redirects by setting `redirect=False` for requests to untrusted source.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
A path traversal flaw has been discovered in the python wheel too. The unpack function is vulnerable to file permission modification through mishandling of file permissions after extraction. The logic blindly trusts the filename from the archive header for the chmod operation, even though the extraction process itself might have sanitized the path. Attackers can craft a malicious wheel file that, when unpacked, changes the permissions of critical system files (e.g., /etc/passwd, SSH keys, config files), allowing for Privilege Escalation or arbitrary code execution by modifying now-writable scripts.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat Quay 3.10.18 is now available with bug fixes.",
"title": "Topic"
},
{
"category": "general",
"text": "Quay 3.10.18",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2762",
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2024-34156",
"url": "https://access.redhat.com/security/cve/CVE-2024-34156"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2024-45337",
"url": "https://access.redhat.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2024-45338",
"url": "https://access.redhat.com/security/cve/CVE-2024-45338"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-12816",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-52881",
"url": "https://access.redhat.com/security/cve/CVE-2025-52881"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61729",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-65945",
"url": "https://access.redhat.com/security/cve/CVE-2025-65945"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66031",
"url": "https://access.redhat.com/security/cve/CVE-2025-66031"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66418",
"url": "https://access.redhat.com/security/cve/CVE-2025-66418"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66471",
"url": "https://access.redhat.com/security/cve/CVE-2025-66471"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66506",
"url": "https://access.redhat.com/security/cve/CVE-2025-66506"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-21441",
"url": "https://access.redhat.com/security/cve/CVE-2026-21441"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-24049",
"url": "https://access.redhat.com/security/cve/CVE-2026-24049"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2762.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Quay 3.10.18",
"tracking": {
"current_release_date": "2026-06-14T15:11:42+00:00",
"generator": {
"date": "2026-06-14T15:11:42+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:2762",
"initial_release_date": "2026-02-16T17:44:31+00:00",
"revision_history": [
{
"date": "2026-02-16T17:44:31+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-16T17:44:35+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-14T15:11:42+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Quay 3.1",
"product": {
"name": "Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:quay:3.10::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Quay"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-bundle@sha256%3Af006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770249889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770224116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-bundle@sha256%3A27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770249881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3Af7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770133631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3Ac5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770991805"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3Ad8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770991340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770133671"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-bundle@sha256%3A363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770993022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770133646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3Ab54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1770249183"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1770224116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1770133631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1770991340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1770133671"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1770133646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1770249183"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1770224116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3Aaab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1770133631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1770991340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1770133671"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1770133646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3Ab46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1770249183"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2024-34156",
"cwe": {
"id": "CWE-674",
"name": "Uncontrolled Recursion"
},
"discovery_date": "2024-09-06T21:20:09.377905+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2310528"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the encoding/gob package of the Golang standard library. Calling Decoder.Decoding, a message that contains deeply nested structures, can cause a panic due to stack exhaustion. This is a follow-up to CVE-2022-30635.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "encoding/gob: golang: Calling Decoder.Decode on a message which contains deeply nested structures can cause a panic due to stack exhaustion",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability in Go\u0027s `encoding/gob` package is of high severity because it exposes applications to potential Denial of Service (DoS) attacks through stack exhaustion. Since `gob` relies on recursive function calls to decode nested structures, an attacker could exploit this by sending crafted messages with excessively deep nesting, causing the application to panic due to stack overflow. This risk is particularly important in scenarios where untrusted or external input is processed, as it can lead to system unavailability or crashes, undermining the reliability and availability of services.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2024-34156"
},
{
"category": "external",
"summary": "RHBZ#2310528",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2310528"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2024-34156",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-34156"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-34156",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2024-34156"
},
{
"category": "external",
"summary": "https://go.dev/cl/611239",
"url": "https://go.dev/cl/611239"
},
{
"category": "external",
"summary": "https://go.dev/issue/69139",
"url": "https://go.dev/issue/69139"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-dev/c/S9POB9NCTdk",
"url": "https://groups.google.com/g/golang-dev/c/S9POB9NCTdk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2024-3106",
"url": "https://pkg.go.dev/vuln/GO-2024-3106"
}
],
"release_date": "2024-09-06T21:15:12.020000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "encoding/gob: golang: Calling Decoder.Decode on a message which contains deeply nested structures can cause a panic due to stack exhaustion"
},
{
"cve": "CVE-2024-45337",
"cwe": {
"id": "CWE-285",
"name": "Improper Authorization"
},
"discovery_date": "2024-12-11T19:00:54.247490+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2331720"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the x/crypto/ssh go library. Applications and libraries that misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass. For example, an attacker may send public keys A and B and authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B, for which the attacker does not control the private key. The misuse of ServerConfig.PublicKeyCallback may cause an authorization bypass.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang.org/x/crypto/ssh: Misuse of ServerConfig.PublicKeyCallback may cause authorization bypass in golang.org/x/crypto",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is classified as important rather than critical because it does not directly enable unauthorized access but rather introduces a risk of authorization bypass if the application or library misuses the PublicKeyCallback API. The vulnerability relies on incorrect assumptions made by the application when handling the sequence or state of keys provided during SSH authentication. Properly implemented systems that use the Permissions field or avoid relying on external state remain unaffected. Additionally, the vulnerability does not allow direct exploitation to gain control over a system without the presence of insecure logic in the application\u0027s handling of authentication attempts.\n\n\nRed Hat Enterprise Linux(RHEL) 8 \u0026 9 and Red Hat Openshift marked as not affected as it was determined that the problem function `ServerConfig.PublicKeyCallback`, as noted in the CVE-2024-45337 issue, is not called by Podman, Buildah, containers-common, or the gvisor-tap-vsock projects.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2024-45337"
},
{
"category": "external",
"summary": "RHBZ#2331720",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2331720"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2024-45337",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-45337"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-45337",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2024-45337"
},
{
"category": "external",
"summary": "https://github.com/golang/crypto/commit/b4f1988a35dee11ec3e05d6bf3e90b695fbd8909",
"url": "https://github.com/golang/crypto/commit/b4f1988a35dee11ec3e05d6bf3e90b695fbd8909"
},
{
"category": "external",
"summary": "https://go.dev/cl/635315",
"url": "https://go.dev/cl/635315"
},
{
"category": "external",
"summary": "https://go.dev/issue/70779",
"url": "https://go.dev/issue/70779"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/-nPEi39gI4Q/m/cGVPJCqdAQAJ",
"url": "https://groups.google.com/g/golang-announce/c/-nPEi39gI4Q/m/cGVPJCqdAQAJ"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2024-3321",
"url": "https://pkg.go.dev/vuln/GO-2024-3321"
}
],
"release_date": "2024-12-11T18:55:58.506000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang.org/x/crypto/ssh: Misuse of ServerConfig.PublicKeyCallback may cause authorization bypass in golang.org/x/crypto"
},
{
"cve": "CVE-2024-45338",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2024-12-18T21:00:59.938173+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2333122"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang.org/x/net/html. This flaw allows an attacker to craft input to the parse functions that would be processed non-linearly with respect to its length, resulting in extremely slow parsing. This issue can cause a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang.org/x/net/html: Non-linear parsing of case-insensitive content in golang.org/x/net/html",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated as an Important severity because an attacker can craft malicious input that causes the parsing functions to process data non-linearly, resulting in significant delays which leads to a denial of service by exhausting system resources.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2024-45338"
},
{
"category": "external",
"summary": "RHBZ#2333122",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2333122"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2024-45338",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-45338"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-45338",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2024-45338"
},
{
"category": "external",
"summary": "https://go.dev/cl/637536",
"url": "https://go.dev/cl/637536"
},
{
"category": "external",
"summary": "https://go.dev/issue/70906",
"url": "https://go.dev/issue/70906"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/wSCRmFnNmPA/m/Lvcd0mRMAwAJ",
"url": "https://groups.google.com/g/golang-announce/c/wSCRmFnNmPA/m/Lvcd0mRMAwAJ"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2024-3333",
"url": "https://pkg.go.dev/vuln/GO-2024-3333"
}
],
"release_date": "2024-12-18T20:38:22.660000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang.org/x/net/html: Non-linear parsing of case-insensitive content in golang.org/x/net/html"
},
{
"cve": "CVE-2025-12816",
"cwe": {
"id": "CWE-179",
"name": "Incorrect Behavior Order: Early Validation"
},
"discovery_date": "2025-11-25T20:01:05.875196+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2417097"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products due to an interpretation conflict in the node-forge library. An unauthenticated attacker could exploit this flaw by crafting malicious ASN.1 structures, leading to a bypass of cryptographic verifications and security decisions in affected applications. This impacts various Red Hat products that utilize node-forge for cryptographic operations.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "RHBZ#2417097",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2417097"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-12816",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-12816"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge",
"url": "https://github.com/digitalbazaar/forge"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/pull/1124",
"url": "https://github.com/digitalbazaar/forge/pull/1124"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq"
},
{
"category": "external",
"summary": "https://kb.cert.org/vuls/id/521113",
"url": "https://kb.cert.org/vuls/id/521113"
},
{
"category": "external",
"summary": "https://www.npmjs.com/package/node-forge",
"url": "https://www.npmjs.com/package/node-forge"
}
],
"release_date": "2025-11-25T19:15:50.243000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-52881",
"cwe": {
"id": "CWE-59",
"name": "Improper Link Resolution Before File Access (\u0027Link Following\u0027)"
},
"discovery_date": "2025-10-17T14:19:18.652000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2404715"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in runc. This attack is a more sophisticated variant of CVE-2019-16884, which was a flaw that allowed an attacker to trick runc into writing the LSM process labels for a container process into a dummy tmpfs file and thus not apply the correct LSM labels to the container process. The mitigation applied for CVE-2019-16884 was fairly limited and effectively only caused runc to verify that when we write LSM labels that those labels are actual procfs files.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "runc: opencontainers/selinux: container escape and denial of service due to arbitrary write gadgets and procfs write redirects",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat considers this as an Important flaw since the impact is limited to local attack with minimal privileges in order to jeopardize the environment.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-52881"
},
{
"category": "external",
"summary": "RHBZ#2404715",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2404715"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-52881",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-52881"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-52881",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-52881"
},
{
"category": "external",
"summary": "https://github.com/opencontainers/runc/security/advisories/GHSA-cgrx-mc8f-2prm",
"url": "https://github.com/opencontainers/runc/security/advisories/GHSA-cgrx-mc8f-2prm"
},
{
"category": "external",
"summary": "https://github.com/opencontainers/selinux/pull/237",
"url": "https://github.com/opencontainers/selinux/pull/237"
}
],
"release_date": "2025-11-05T09:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
},
{
"category": "workaround",
"details": "Potential mitigations for this issue include:\n\n* Using rootless containers, as doing so will block most of the inadvertent writes (runc would run with reduced privileges, making attempts to write to procfs files ineffective).\n* Based on our analysis, neither AppArmor or SELinux can protect against the full version of the redirected write attack. The container runtime is generally privileged enough to write to arbitrary procfs files, which is more than sufficient to cause a container breakout.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "runc: opencontainers/selinux: container escape and denial of service due to arbitrary write gadgets and procfs write redirects"
},
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"cve": "CVE-2025-65945",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2025-12-04T19:01:14.733682+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418904"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in auth0/node-jws. This vulnerability allows improper signature verification via using the HS256 (Hash-based Message Authentication Code using SHA-256) algorithm under specific conditions, where applications use the jws.createVerify() function for HMAC (Keyed-Hash Message Authentication Code) algorithms and user-provided data from the JSON (JavaScript Object Notation) Web Signature protected header or payload in HMAC secret lookup routines.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-jws: auth0/node-jws: Improper signature verification in HS256 algorithm",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-65945"
},
{
"category": "external",
"summary": "RHBZ#2418904",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418904"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-65945",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-65945"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-65945",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-65945"
},
{
"category": "external",
"summary": "https://github.com/auth0/node-jws/commit/34c45b2c04434f925b638de6a061de9339c0ea2e",
"url": "https://github.com/auth0/node-jws/commit/34c45b2c04434f925b638de6a061de9339c0ea2e"
},
{
"category": "external",
"summary": "https://github.com/auth0/node-jws/security/advisories/GHSA-869p-cjfg-cm3x",
"url": "https://github.com/auth0/node-jws/security/advisories/GHSA-869p-cjfg-cm3x"
}
],
"release_date": "2025-12-04T18:45:37.517000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-jws: auth0/node-jws: Improper signature verification in HS256 algorithm"
},
{
"cve": "CVE-2025-66031",
"cwe": {
"id": "CWE-674",
"name": "Uncontrolled Recursion"
},
"discovery_date": "2025-11-26T23:01:36.363253+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2417397"
}
],
"notes": [
{
"category": "description",
"text": "An ASN.1 Denial of Service (Dos) vulnerability exists in the node-forge asn1.fromDer function within forge/lib/asn1.js. The ASN.1 DER parser implementation (_fromDer) recurses for every constructed ASN.1 value (SEQUENCE, SET, etc.) and lacks a guard limiting recursion depth. An attacker can craft a small DER blob containing a very large nesting depth of constructed TLVs which causes the Node.js V8 engine to exhaust its call stack and throw RangeError: Maximum call stack size exceeded, crashing or incapacitating the process handling the parse. This is a remote, low-cost Denial-of-Service against applications that parse untrusted ASN.1 objects.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: node-forge ASN.1 Unbounded Recursion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66031"
},
{
"category": "external",
"summary": "RHBZ#2417397",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2417397"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66031",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66031"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66031",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66031"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/commit/260425c6167a38aae038697132483b5517b26451",
"url": "https://github.com/digitalbazaar/forge/commit/260425c6167a38aae038697132483b5517b26451"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-554w-wpv2-vw27",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-554w-wpv2-vw27"
}
],
"release_date": "2025-11-26T22:23:26.013000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "node-forge: node-forge ASN.1 Unbounded Recursion"
},
{
"cve": "CVE-2025-66418",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-05T17:01:20.277857+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419455"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in urllib3 Python library that could lead to a Denial of Service condition. A remote, malicious server can exploit this flaw by responding to a client request with an HTTP message that uses an excessive number of chained compression algorithms. This unlimited decompression chain causes the client system to consume a virtually unbounded amount of CPU resources and memory. The high resource usage leads to service disruption, making the application unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3: Unbounded decompression chain leads to resource exhaustion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66418"
},
{
"category": "external",
"summary": "RHBZ#2419455",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419455"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66418",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66418"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66418",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66418"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/24d7b67eac89f94e11003424bcf0d8f7b72222a8",
"url": "https://github.com/urllib3/urllib3/commit/24d7b67eac89f94e11003424bcf0d8f7b72222a8"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-gm62-xv2j-4w53",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-gm62-xv2j-4w53"
}
],
"release_date": "2025-12-05T16:02:15.271000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3: Unbounded decompression chain leads to resource exhaustion"
},
{
"cve": "CVE-2025-66471",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2025-12-05T17:02:21.597728+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419467"
}
],
"notes": [
{
"category": "description",
"text": "A decompression handling flaw has been discovered in urllib3. When streaming a compressed response, urllib3 can perform decoding or decompression based on the HTTP Content-Encoding header (e.g., gzip, deflate, br, or zstd). The library must read compressed data from the network and decompress it until the requested chunk size is met. Any resulting decompressed data that exceeds the requested amount is held in an internal buffer for the next read operation. The decompression logic could cause urllib3 to fully decode a small amount of highly compressed data in a single operation. This can result in excessive resource consumption (high CPU usage and massive memory allocation for the decompressed data; CWE-409) on the client side, even if the application only requested a small chunk of data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3 Streaming API improperly handles highly compressed data",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66471"
},
{
"category": "external",
"summary": "RHBZ#2419467",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419467"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66471",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66471"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66471",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66471"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/c19571de34c47de3a766541b041637ba5f716ed7",
"url": "https://github.com/urllib3/urllib3/commit/c19571de34c47de3a766541b041637ba5f716ed7"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-2xpw-w6gg-jr37",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-2xpw-w6gg-jr37"
}
],
"release_date": "2025-12-05T16:06:08.531000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 Streaming API improperly handles highly compressed data"
},
{
"cve": "CVE-2025-66506",
"cwe": {
"id": "CWE-405",
"name": "Asymmetric Resource Consumption (Amplification)"
},
"discovery_date": "2025-12-04T23:01:20.507333+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419056"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Fulcio, a free-to-use certificate authority. This vulnerability allows a denial of service (DoS) due to excessive memory allocation when processing a malicious OpenID Connect (OIDC) identity token containing numerous period characters.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/sigstore/fulcio: Fulcio: Denial of Service via crafted OpenID Connect (OIDC) token",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat as Fulcio, a certificate authority used for issuing code signing certificates, is susceptible to a denial of service when processing a specially crafted OpenID Connect (OIDC) token. This could lead to resource exhaustion and service unavailability in affected Red Hat products that utilize Fulcio.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66506"
},
{
"category": "external",
"summary": "RHBZ#2419056",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419056"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66506",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66506"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66506",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66506"
},
{
"category": "external",
"summary": "https://github.com/sigstore/fulcio/commit/765a0e57608b9ef390e1eeeea8595b9054c63a5a",
"url": "https://github.com/sigstore/fulcio/commit/765a0e57608b9ef390e1eeeea8595b9054c63a5a"
},
{
"category": "external",
"summary": "https://github.com/sigstore/fulcio/security/advisories/GHSA-f83f-xpx7-ffpw",
"url": "https://github.com/sigstore/fulcio/security/advisories/GHSA-f83f-xpx7-ffpw"
}
],
"release_date": "2025-12-04T22:04:41.637000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/sigstore/fulcio: Fulcio: Denial of Service via crafted OpenID Connect (OIDC) token"
},
{
"cve": "CVE-2026-21441",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-01-07T23:01:59.422078+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2427726"
}
],
"notes": [
{
"category": "description",
"text": "urllib3 is an HTTP client library for Python. urllib3\u0027s streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP `Content-Encoding` header (e.g., `gzip`, `deflate`, `br`, or `zstd`). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. Starting in version 1.22 and prior to version 2.6.3, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client. Applications and libraries are affected when they stream content from untrusted sources by setting `preload_content=False` when they do not disable redirects. Users should upgrade to at least urllib3 v2.6.3, in which the library does not decode content of redirect responses when `preload_content=False`. If upgrading is not immediately possible, disable redirects by setting `redirect=False` for requests to untrusted source.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-21441"
},
{
"category": "external",
"summary": "RHBZ#2427726",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2427726"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-21441",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-21441"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-21441",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-21441"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/commit/8864ac407bba8607950025e0979c4c69bc7abc7b",
"url": "https://github.com/urllib3/urllib3/commit/8864ac407bba8607950025e0979c4c69bc7abc7b"
},
{
"category": "external",
"summary": "https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99",
"url": "https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99"
}
],
"release_date": "2026-01-07T22:09:01.936000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "urllib3: urllib3 vulnerable to decompression-bomb safeguard bypass when following HTTP redirects (streaming API)"
},
{
"cve": "CVE-2026-24049",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-01-22T05:00:54.709179+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431959"
}
],
"notes": [
{
"category": "description",
"text": "A path traversal flaw has been discovered in the python wheel too. The unpack function is vulnerable to file permission modification through mishandling of file permissions after extraction. The logic blindly trusts the filename from the archive header for the chmod operation, even though the extraction process itself might have sanitized the path. Attackers can craft a malicious wheel file that, when unpacked, changes the permissions of critical system files (e.g., /etc/passwd, SSH keys, config files), allowing for Privilege Escalation or arbitrary code execution by modifying now-writable scripts.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "wheel: wheel: Privilege Escalation or Arbitrary Code Execution via malicious wheel file unpacking",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-24049"
},
{
"category": "external",
"summary": "RHBZ#2431959",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431959"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-24049",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-24049"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-24049",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-24049"
},
{
"category": "external",
"summary": "https://github.com/pypa/wheel/commit/7a7d2de96b22a9adf9208afcc9547e1001569fef",
"url": "https://github.com/pypa/wheel/commit/7a7d2de96b22a9adf9208afcc9547e1001569fef"
},
{
"category": "external",
"summary": "https://github.com/pypa/wheel/releases/tag/0.46.2",
"url": "https://github.com/pypa/wheel/releases/tag/0.46.2"
},
{
"category": "external",
"summary": "https://github.com/pypa/wheel/security/advisories/GHSA-8rrh-rw8j-w5fx",
"url": "https://github.com/pypa/wheel/security/advisories/GHSA-8rrh-rw8j-w5fx"
}
],
"release_date": "2026-01-22T04:02:08.706000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-16T17:44:31+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2762"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:191ca7ff2973addc6e654d85d8c764128aa0f314f5733673f884726f65d39cef_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:1c8cdc119d2774968249e45f44d6c6b8db7be5d1722a10370d6a5d8a610bdad3_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:31d6f3852e464d9e691d671ca9e31c7ffb74eac660f2dc1d174eb9541f77025b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:27c6e90239456e04b5d4788207c4b93d2a501e054c531817a5d9dd1d3050e88b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:085401485780294ee1030fcbcf9e5b27d424175539a3c6b58aa1510464506fac_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:aab02c5996a8fc6b4a5ccc4c5fe8e104117ecdfb89053ad76c243f098636bf47_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:f7db77081450f895a76d5f2bd14801cbfba5aeb8feabc6488686358312a006a9_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:c5efa89a8889042a125561e20ce918feab88ed8bb2e82a6dbb8e63a48e188cee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:0ac2270f040425b228c5be29498fb3b7179cc1c2b89ffc498d0e533a1f215913_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:7fdd702d7a92b1ecad9e8aed2572c66144a8deb6b7796d422ae192442d35fecf_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:d8ed6625f531394ab4bad84d68e24226e887ecfbd09c57cc63e005879fb49525_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:f006b674a07b09680682842c3e0f6a543fb19865124bd0c23d3fe4faf75a86f8_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:0a1b0e6be074b935cc6dc0d4782cbcb0afa8e86e1fa1eda7a107994c933554ee_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:17cd981b26466b0ec48f051f9c9b9168af6780006031a128c7f7a03a5622b8ba_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:571a99e76806fd7d7fb805fac388fd450d9ef58a00a95f90c9dbdc32ed93c44c_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:363e7b4be994bc1aaae25be1b26e400631aad24e92a7a5ee7f9d2ca960cdb420_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:0d396616e44ed9de0e390c19cd893fb39681d32a99f30c0187dfa54f1089e980_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7b6239fb3d5ff13816e8c348addba581070cf104a81bf9b2019841594f30980b_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:8d7b4ba73bc93b1bc69027d37a5bdcf43dbc31a06b5f592d36ac5b9d2641a839_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:5cf58b1f54219b67c725f4a5066d9e757e7b5ece39d5de1a474a8be6a3490401_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b46b24ca0902be8f03b1ffa1b593ef55a4d92a9660adb4b8b4d0f44692431b93_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:b54b571ac2f245f1a2eb1c7cf0dff6bc24ca6b9706ab8ee2dca323d561238255_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "wheel: wheel: Privilege Escalation or Arbitrary Code Execution via malicious wheel file unpacking"
}
]
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.